网页中的window,html,document,body各种高度
选取document,html,body
1
2
3
4
5document //选取文档
document.documentElement // html
document.querySelector('body) // bodywindow 的高度 屏幕尺寸
1
window.innerHeight
html body会塌缩
1
2
3
4 clientHeight // 视窗大小
scrollHeight //滚动高度
scrollTop // 滚动上边距高度
getBoundingClientRect // 相对视窗的 top, left
- 图片懒加载用到原理
1 | var oClass = document.querySelector('.class1'); |