jQuery实现的兼容性浮动层示例
本文实例讲述了jQuery实现的兼容性浮动层。分享给大家供大家参考,具体如下:
运行效果截图如下:
具体代码如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>jQuery浮动层</title>
<style type="text/css">
#test
{
position: absolute;
top: 10px;
right: 10px;
width: 430px;
height: 300px;
background: #EEF2FB;
color: Black;
font-size: 13px;
margin-top: 50px;
left: 50%;
margin: 0px 0 0 -215px;
text-align: center;
font-size: 16px;
border: 1px dotted green;
}
</style>
<script src="jquery-1.7.2.min.js" type="text/javascript"></script>
<script type="text/javascript" language="javascript">
$(document).ready(function () {
var menuYloc = $("#test").offset().top;
var menuXloc = $("#test").offset().right;
$(window).scroll(function () {
var offsetTop = menuYloc + $(window).scrollTop() + "px";
$("#test").animate({
top: offsetTop
}, {
duration: 600, queue: false
});
});
});
</script>
</head>
<body>
<div>
<div id="test">
我就是悬浮的DIV区域<br />
兼容:Test ie6+,firefox3.0</div>
</div>
<div style="height: 5000px;">
</div>
</body>
</html>
更多关于jQuery相关内容感兴趣的读者可查看本站专题:《jQuery常见经典特效汇总》、《jQuery常用插件及用法总结》、《jQuery表格(table)操作技巧汇总》、《jQuery form操作技巧汇总》、《jQuery操作json数据技巧汇总》、《jQuery扩展技巧总结》、《jQuery拖拽特效与技巧总结》、《jquery中Ajax用法总结》、《jQuery动画与特效用法总结》及《jquery选择器用法总结》
希望本文所述对大家jQuery程序设计有所帮助。
以上是 jQuery实现的兼容性浮动层示例 的全部内容, 来源链接: utcz.com/z/325404.html