51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

jquery实现弹出层完美居中效果

jquery实现弹出层完美居中效果
++复制代码++ 代码如下:

showDiv($("#pop"));
function showDiv(obj){
$(obj).show();
center(obj);
$(window).scroll(function(){
center(obj);
});
$(window).resize(function(){
center(obj);
});
}


function center(obj){
var windowWidth = document.documentElement.clientWidth;
var windowHeight = document.documentElement.clientHeight;
var popupHeight = $(obj).height();
var popupWidth = $(obj).width();
$(obj).css({
"position": "absolute",
"top": (windowHeight-popupHeight)/2+$(document).scrollTop(),
"left": (windowWidth-popupWidth)/2
});
}



赞(0)
未经允许不得转载:工具盒子 » jquery实现弹出层完美居中效果