当前位置: 代码迷 >> Web前端 >> div absolute 正当中
  详细解决方案

div absolute 正当中

热度:462   发布时间:2013-01-04 10:04:14.0
div absolute 居中
对于页面绝对定位,垂直居中
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");


对于页面绝对定位,水平居中
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");

原文链接地址:http://www.jquery001.com/jquery-plugin-center-object-exactly.html
  相关解决方案