技術(shù)頻道導(dǎo)航
HTML/CSS
.NET技術(shù)
IIS技術(shù)
PHP技術(shù)
Js/JQuery
Photoshop
Fireworks
服務(wù)器技術(shù)
操作系統(tǒng)
網(wǎng)站運(yùn)營

贊助商

分類目錄

贊助商

最新文章

搜索

JQuery監(jiān)控瀏覽器調(diào)整大小(使用resizeEnd插件)

作者:admin    時(shí)間:2017-8-24 9:47:40    瀏覽:

在自適應(yīng)網(wǎng)頁設(shè)計(jì)中,我們通常用CSS來定義針對(duì)不同瀏覽器大小的樣式表,但是有些JS或JQuery網(wǎng)頁功能需要在不同的瀏覽器大小有不同的表現(xiàn),在拖拽調(diào)整瀏覽器大小時(shí),CSS就無法即時(shí)控制到JS函數(shù)的調(diào)用,在這種情況下,JQuery監(jiān)控瀏覽器調(diào)整大小就發(fā)揮了關(guān)鍵的作用。本文將介紹JQuery如何使用resizeEnd插件來監(jiān)控瀏覽器調(diào)整大小。

demo

代碼使用介紹

1、插件調(diào)用

在html代碼<head></head>里調(diào)用如下兩個(gè)JS文件:

<script src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="jQuery.resizeEnd.js"></script>

需要使用兩個(gè)文件:jquery.min.jsjQuery.resizeEnd.js,其中jquery.min.js可以使用百度公共代碼庫文件,jQuery.resizeEnd.js是插件文件,調(diào)用時(shí)注意路徑正確。

2、resizeEnd使用示范

<div class="test"></div>
<script>
(function($) {
  $(window).resizeEnd({
    delay : 500 /* 監(jiān)控間隔時(shí)間 單位:毫秒 */
  }, function() {
    /* 這里添加回調(diào)函數(shù)*/
    $('.test).html($(window).width() + "x" + $(window).height());
  });
})(jQuery);
</script>

完整HTML實(shí)例代碼

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Resize End Test</title>
<script src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="jQuery.resizeEnd.js"></script>
<style type="text/css">
body,
html {
  margin: 0;
  padding: 0;
}
body {
  background-color: #69D2E7;
  font-size: 16px;
  font-family: 'Lato', sans-serif;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
}
h1, h2, h3, h4 {
  font-weight: 300;
}
.main-wrapper {
  padding: 50px;
  margin-left: 200px;
}
.site-title {
  font-size: 36px;
  line-height: 1;
}
.window {
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #fff;
  padding: 25px;
  border-radius: 5px;
  display: inline-block;
  text-align: center;
  width: 400px;
}
.window h3 {
  height: 24px;
  font-size: 24px;
  color: #54636E;
}
</style>
</head>
<body>
<div class="main-wrapper">
<h1 class="site-title">jQuery ResizeEnd Plugin</h1>
<h2>調(diào)整您的瀏覽器窗口大小,<br>下方顯示窗口大?。?lt;/h2>
<div class="window"><h3> </h3></div>
<br clear="all">
</div>
<script>
window.onload = function(){
  $('.window h3').text($(window).width() + "x" + $(window).height());
};
(function($) {
  $(window).resizeEnd({
    delay : 500
    }, function() {
    /* 這里添加回調(diào)函數(shù) */
    $('.window h3').html($(window).width() + "x" + $(window).height());
  });
})(jQuery);
</script>
</body>
</html>

execcodegetcode

您可能對(duì)以下文章也感興趣

標(biāo)簽: JQuery  resizeEnd  監(jiān)控  
x
  • 站長推薦
/* 左側(cè)顯示文章內(nèi)容目錄 */