JQ 页面上下左右居中的插件
程序员文章站
2024-01-25 13:30:29
...
<!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></title> <style type="text/css"> body,div{ margin:0; padding:0;} .box{ width:200px; height:60px; background-color:#c00;} </style> </head> <body> <div class="box"></div> <script>window.jQuery || document.write(unescape("%3Cscript src='http://libs.baidu.com/jquery/1.10.1/jquery.min.js' type='text/javascript'%3E%3C/script%3E")); </script> <script type="text/javascript"> jQuery.fn.center = function(){ this.css("position","absolute"); this.css("top", Math.max(0, (($(window).height() - $(this).outerHeight()) / 2) + $(window).scrollTop()) + "px"); this.css("left", Math.max(0, (($(window).width() - $(this).outerWidth()) / 2) + $(window).scrollLeft()) + "px"); return this; } $(".box").center(); </script> </body> </html>
效果图:
推荐阅读
-
JQ 页面上下左右居中的插件
-
Mybatis的PageHelper分页插件的PageInfo的属性参数,成员变量的解释,以及页面模板
-
在PHP站点的页面上添加Facebook评论插件的实例教程_PHP
-
为什么用div加入小小的表单后,居中的页面整体会左移一点点,php搜索数据库返回数据后,也会这样_html/css_WEB-ITnose
-
jquery.messager.js插件导致页面抖动的解决方法
-
在PHP站点的页面上添加Facebook评论插件的实例教程_php实例
-
HTML页面弹出居中可拖拽的自定义窗口层_jquery
-
layer.open的自适应及居中及子页面标题的修改方法
-
jq给页面添加覆盖层遮罩的实例
-
jq给页面添加覆盖层遮罩的实例