Home > Article > Web Front-end > HTML implementation to obtain browser scroll distance (pure code)
This article introduces to you about the HTML implementation of obtaining the browser scrolling distance (pure code). It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you. help.
/** * 获取浏览器滚动距离 */ function getScrollOffset() { if (window.pageXOffset) { return { x: window.pageXOffset, y: window.pageYOffset } } else { return { x: document.body.scrollLeft + document.documentElement.scrollLeft, y: document.body.scrollTop + document.documentElement.scrollTop } } } console.log(getScrollOffset());
Recommended related articles:
Analysis of image preloading in html (with code)
Flexible layout in HTML (Flex) Introduction (with code)
The above is the detailed content of HTML implementation to obtain browser scroll distance (pure code). For more information, please follow other related articles on the PHP Chinese website!