Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 237 Bytes

检查用户是否滚动到页面底部.md

File metadata and controls

9 lines (7 loc) · 237 Bytes

检查用户是否滚动到页面底部

const isAtBottom = () =>
  document.documentElement.clientHeight + window.scrollY >=
  document.documentElement.scrollHeight

查看效果