关于js可视距离的方法总结
程序员文章站
2022-05-23 09:42:41
...
这次给大家总结关于js可视距离的知识点,下面就是具体内容,一起跟随小编来看一下吧。
JQuery监听页面滚动总结
1、当前滚动的地方的窗口顶端到整个页面顶端的距离:
var winPos = $(window).scrollTop();
2、获取指定元素的页面位置:
$(val).offset().top;
3、对页面滚动条滚动的监听:要放在页面加载的时候
$(window).scroll(function(event)});
4、设置滚动条到指定位置。
$(window).scrollTop(offset)。
5、jQuery('#item').outerHeight()
#item 的实际尺寸,即 height+padding+border
6、jQuery('#item').outerHeight(true)
#item的实际尺寸及外边距,即 height+padding+border+margin
相关推荐:
以上就是关于js可视距离的方法总结的详细内容,更多请关注其它相关文章!