jQuery实现的兼容性浮动层示例
2019/6/27 22:13:59
本文主要是介绍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实现的兼容性浮动层示例的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-28Vue CLI资料入门教程
- 2024-11-28Vue CLI资料:新手入门指南
- 2024-11-28Threejs的三维坐标系
- 2024-11-27AntDesignVue入门指南:轻松搭建美观的Vue项目
- 2024-11-27Egg.js入门指南:新手必备的零基础教程
- 2024-11-27Hotkeys.js开发入门教程
- 2024-11-27Ant Design Vue入门指南:轻松搭建美观界面
- 2024-11-27Vue3项目实战:从零开始的完整指南
- 2024-11-27Vue CLI多环境配置资料详解
- 2024-11-27Vue3+Vite资料:新手入门教程