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可视距离的方法总结的详细内容。更多信息请关注PHP中文网其他相关文章!