一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

JavaScript中各种宽高的理解和应用

时间:2016-03-15 编辑:简简单单 来源:一聚教程网

下面来抛砖引玉,简单的把“js/jquery各种宽高的理解和应用”再来说一下!

window相关的宽高

window是可以省略的,直接与window挂钩的宽高有如下几个!

window.innerWidth
window.innerHeight
window.outerWidth
window.outerHeight
展示如下:

enter image description here

innerHeight又叫可视区域。支持IE9及以上浏览器。

window.screen.height
window.screen.width
window.screen.availHeight
window.screen.availWidth
window.screenTop
window.screenLeft
enter link description here

enter link description here

enter image description here

与document相关的宽高

包括与client相关的、与offset相关的、与scroll相关的。

并讲到了documentElement和body的区别。

Event对象的五种坐标

enter image description here具体我就不多写了,等上线之后大家看视频教程吧!

热门栏目