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中文網其他相關文章!