(2018-05-07.Python从Zero到One)八、(前端)jQuery__1.8.10尺寸相关、滚动事件

上一篇文章为:→1.8.9jquery动画

尺寸相关、滚动事件

1、获取和设置元素的尺寸

width()、height()    获取元素width和height  
innerWidth()、innerHeight()  包括padding的width和height  
outerWidth()、outerHeight()  包括padding和border的width和height  
outerWidth(true)、outerHeight(true)   包括padding和border以及margin的width和height

2、获取元素相对页面的绝对位置

offse()

3、获取可视区高度

$(window).height();

4、获取页面高度

$(document).height();

5、获取页面滚动距离

$(document).scrollTop();  
$(document).scrollLeft();

6、页面滚动事件

$(window).scroll(function(){  
    ......  
})

下一篇文章为:→1.8.11实例

你可能感兴趣的:((2018-05-07.Python从Zero到One)八、(前端)jQuery__1.8.10尺寸相关、滚动事件)