JS 获取浏览器窗口大小方面的

function getDocument() {
        var de = document.documentElement;
        var body = {
            clientWidth: self.innerWidth || (de && de.clientWidth) || document.body.clientWidth, //只得到页面可见宽
            clientHeight: self.innerHeight || (de && de.clientHeight) || document.body.clientHeight, //只得到页面可见高
            scrollTop: window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0 //页面被卷上去的高度
        };
        return body;
    }

 

针对IE的滤镜样式

 

浮动最上层

position:fixed; _position:absolute; left:0; top:0;

_top:expression(window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop);

 

浮动居中

position:fixed; _position:absolute; margin:-130px 0 0 -280px; left:50%; top:50%;

_top:expression((window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop)+(document.documentElement.clientHeight||document.body.clientHeight)/2);

JS 获取浏览器窗口大小方面的,古老的榕树,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。