js查询窗口的几何属性

 var Geometry = {};
        if (window.screen.availWidth) { //IE
            Geometry.getScreenWidth = function () { return window.screen.availWidth; };
            Geometry.getScreenHeight = function () { return window.screen.availHeight; };
        }
        else if (window.screen.availLeft) {//firefox
            Geometry.getScreenWidth = function () { return window.screen.availLeft };
            Geometry.getScreenHeight = function () { return window.screen.availTop; };
        }
        if (window.screenLeft) {//IE
            Geometry.getWindowX = function () { return window.screenLeft; };
            Geometry.getWindowY = function () { return window.screenTop; };
        }
        else if (window.screenX) {//firefox
            Geometry.getWindowX = function () { return window.screenX; };
            Geometry.getWindowY = function () { return window.screenY; };
        }
        if (window.innerWidth) {//firefox
            Geometry.getViewportWidth = function () { return window.innerWidth; };
            Geometry.getViewportHeight = function () { return window.innerHeight; };
            Geometry.getHorizontalScroll = function () { return window.pageXOffset; };
            Geometry.getVerticalScroll = function () { return window.pageYOffset; };
        }
        else if (document.documentElement && document.documentElement.clientWidth) {//IE6 and doctype
            Geometry.getViewportWidth = function () { return document.documentElement.clientWidth; };
            Geometry.getViewportHeight = function () { return document.documentElement.clientHeight; };
            Geometry.getHorizontalScroll = function () { return document.documentElement.scrollLeft; };
            Geometry.getVerticalScroll = function () { return document.documentElement.scrollTop; };
        }
        else if (document.body.clientWidth) {//IE4 IE5 IE without docType
            Geometry.getViewportWidth = function () { return document.body.clientWidth; };
            Geometry.getViewportHeight = function () { return document.body.clientHeight; };
            Geometry.getHorizontalScroll = function () { return document.body.scrollLeft; };
            Geometry.getVerticalScroll = function () { return document.body.scrollTop; };
        }
        if (document.documentElement && document.documentElement.scrollWidth) {
            Geometry.getDocumentWidth = function () { return document.documentElement.scrollWidth; };
            Geometry.getDocumentHeight = function () { return document.documentElement.scrollHeight; };
        }
        else if (document.body.scrollWidth) {
            Geometry.getDocumentWidth = function () { return document.body.scrollWidth; };
            Geometry.getDocumentHeight = function () { return document.body.scrollHeight; };
        }


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值