javascript 获取页面的高度及滚动条的位置的代码_javascript技巧
程序员文章站
2022-04-15 16:08:19
...
复制代码 代码如下:
var Viewport={
top : function(){
return window.pageYOffset
|| document.documentElement && document.documentElement.scrollTop
|| document.body.scrollTop;
},
height : function(){
return window.innerHeight
|| document.documentElement && document.documentElement.clientHeight
|| document.body.clientHeight;
},
left : function(){
return window.pageXOffset
|| document.documentElement && document.documentElement.scrollLeft
|| document.body.scrollLeft;
},
width : function(){
return window.innerWidth
|| document.documentElement && document.documentElement.clientWidth
|| document.body.clientWidth;
},
right : function(){
return Viewport.left() + Viewport.width();
},
bottom : function(){
return Viewport.top() + Viewport.height();
}
};
居中:
复制代码 代码如下:
style.position="absolute";
style.left=50%;
style.top=Viewport.Top()+Viewport.Height()/2+"px";
上一篇: php不编译安装openssl扩展的实现
下一篇: 如何用PHP实现Socket服务器
推荐阅读
-
js获取元素相对窗口位置的实现代码_javascript技巧
-
获取鼠标在div中的相对位置的实现代码_javascript技巧
-
IE及firefox下获取及设置样式值的代码_javascript技巧
-
用javascript获取当页面上鼠标光标位置和触发事件的对象的代码_javascript技巧
-
使用TextRange获取输入框中光标的位置的代码_javascript技巧
-
js获取鼠标点击的位置实现思路及代码_javascript技巧
-
获取dom元素那些讨厌的位置封装代码_javascript技巧
-
获取鼠标在div中的相对位置的实现代码_javascript技巧
-
获取网站跟路径的javascript代码(站点及虚拟目录)_javascript技巧
-
使用TextRange获取输入框中光标的位置的代码_javascript技巧