1 /** 2 * 獲取瀏覽器滾動距離 3 */ 4 function getScrollOffset() { 5 if (window.pageXOffset) { 6 return { 7 x: window.pageXOffset, 8 ... ...
1 /** 2 * 獲取瀏覽器滾動距離 3 */ 4 function getScrollOffset() { 5 if (window.pageXOffset) { 6 return { 7 x: window.pageXOffset, 8 y: window.pageYOffset 9 } 10 } else { 11 return { 12 x: document.body.scrollLeft + document.documentElement.scrollLeft, 13 y: document.body.scrollTop + document.documentElement.scrollTop 14 } 15 } 16 } 17 console.log(getScrollOffset()); 18