|
|
|
|
|
在自適應(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)整大小。
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.js
和 jQuery.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>