dom scrollX scrollY innerWidth cilentWidth

            function getScroll(){
                return {
                    x:window.pageXOffset?window.pageXOffset:document.body.scrollLeft+document.documentElement.scrollLeft,
                    y:window.pageYOffset?window.pageYOffset:document.body.scrollTop+document.documentElement.scrollTop,
                }
            }
            function getViewportWH(){
                if(window.innerWidth){
                    return {
                        w:window.innerWidth,
                        h:window.innerHeight,
                    }
                }else{
                    if(document.compatMode==='BackCompat'){
                        return {
                            w:document.body.clientWidth,
                            h:document.body.clientHeight,
                        }
                    }else{
                        return {
                            w:document.documentElement.clientWidth,
                            h:document.documentElement.clientHeight,
                        }
                    }
                }

            }
            console.log(getViewportWH())

 

上一篇:10.ref


下一篇:《C语言程序设计》一3.4 案例学习——计算一年中某月份的总天数