JQuery监控浏览器调整大小(使用resizeEnd插件)
作者:admin 时间:2017-8-24 9:47:40 浏览:在自适应网页设计中,我们通常用CSS来定义针对不同浏览器大小的样式表,但是有些JS或JQuery网页功能需要在不同的浏览器大小有不同的表现,在拖拽调整浏览器大小时,CSS就无法即时控制到JS函数的调用,在这种情况下,JQuery监控浏览器调整大小就发挥了关键的作用。本文将介绍JQuery如何使用resizeEnd插件来监控浏览器调整大小。
代码使用介绍
1、插件调用
在html代码<head></head>
里调用如下两个JS文件:
<script src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="jQuery.resizeEnd.js"></script>
需要使用两个文件:jquery.min.js
和 jQuery.resizeEnd.js
,其中jquery.min.js
可以使用百度公共代码库文件,jQuery.resizeEnd.js
是插件文件,调用时注意路径正确。
2、resizeEnd使用示范
<div class="test"></div>
<script>
(function($) {
$(window).resizeEnd({
delay : 500 /* 监控间隔时间 单位:毫秒 */
}, function() {
/* 这里添加回调函数*/
$('.test).html($(window).width() + "x" + $(window).height());
});
})(jQuery);
</script>
完整HTML实例代码
<!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>调整您的浏览器窗口大小,<br>下方显示窗口大小:</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() {
/* 这里添加回调函数 */
$('.window h3').html($(window).width() + "x" + $(window).height());
});
})(jQuery);
</script>
</body>
</html>
您可能对以下文章也感兴趣
- 站长推荐