div absolute 居中
程序员文章站
2022-05-01 20:22:07
...
很多情况下,我们需要在网页上弹出dialog,需要水平垂直居中。而且可以做到自动适应窗口变化
[b]对于页面绝对定位,垂直居中[/b]
[b]对于页面绝对定位,水平居中 [/b]
原文链接地址:[url]http://www.jquery001.com/jquery-plugin-center-object-exactly.html[/url]
[b]对于页面绝对定位,垂直居中[/b]
var h = $(this).height();
var oh = $(this).outerHeight();
var mt = (h + (oh - h)) / 2;
$(this).css("margin-top", "-" + mt + "px");
$(this).css("top", "50%");
$(this).css("position", "absolute");
[b]对于页面绝对定位,水平居中 [/b]
var w = $(this).width();
var ow = $(this).outerWidth();
var ml = (w + (ow - w)) / 2;
$(this).css("margin-left", "-" + ml + "px");
$(this).css("left", "50%");
$(this).css("position", "absolute");
原文链接地址:[url]http://www.jquery001.com/jquery-plugin-center-object-exactly.html[/url]
上一篇: HTML5新语法介绍和新特性标签
下一篇: dorado hibernate