-
offsetLeft依赖于offsetParent
查看全部 -
offset小结
查看全部 -
clientLeft~clientTop小结
查看全部 -
document.client小结
查看全部 -
screenTop~screenLeft
查看全部 -
screen.height~screen.avaulHeight
查看全部 -
window的innerHeight和outHeight图例
查看全部 -
offsetLeft & offsetTop 和 offsetParent 的关系<br />查看全部
-
offsetLeft & offsetTop
查看全部 -
offsetWidth & offsetHeight
查看全部 -
1、获取兼容各种浏览器的可视区域高度
var clientx = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight;
2、用getBoundingClientRect() 获取可视区的高度,返回当前div距离可视区域的top、left、bottom、right四个值
3、Element.classList.add("className"); 某个元素的classList属性可以取出这个元素的素有类名,再通过add方法给这个元素添加一个类名。
4、window.onscroll 窗口滚动轴滑动事件函数
查看全部 -
event对象坐标
查看全部 -
div中:
无滚动时
scrollWidth===clientWidth=style.width+style.padding*2
有滚动轴时
scrollWidth==实际内容宽度+padding*2
scrollHeight==实际内容高度+padding*2
查看全部 -
window.screen.width & window.screen.availWidth window.screenTop & window.screenLeft查看全部
-
window.screen.height & window.screen.availHeight
查看全部
举报