元素页面定位居中函数

Posted on 2015-10-31 17:08  斯是陋室,惟吾德馨  阅读(157)  评论(0编辑  收藏  举报
function centerposition( obj ){
     var wWidth = document.documentElement.clientwidth;
     var wHeight = document.documentElement.clientHeight;
     var oWidth = obj.offsetWidth;
     var oHeight = obj.offsetHeight;
     obj.style.left = (wWidth - oWidth) / 2 + 'px';
     obj.style.top = (wHeight - oHeight) / 2 + 'px';
}