30秒学会 JavaScript 片段 · 2017年9月15日

30秒学会 JavaScript 片段 – getScrollPosition

Returns the scroll position of the current page.

Use pageXOffset and pageYOffset if they are defined, otherwise scrollLeft and scrollTop.
You can omit el to use a default value of window.

代码片段

const getScrollPosition = (el = window) => ({
  x: el.pageXOffset !== undefined ? el.pageXOffset : el.scrollLeft,
  y: el.pageYOffset !== undefined ? el.pageYOffset : el.scrollTop
});

使用样例

getScrollPosition(); // {x: 0, y: 200}