使用React js检测用户何时滚动到div的底部

使用React js检测用户何时滚动到div的底部,第1张

使用React js检测用户何时滚动到div的底部

您可以

el.getBoundingClientRect().bottom
用来检查底部是否已被查看

isBottom(el) {  return el.getBoundingClientRect().bottom <= window.innerHeight;}componentDidMount() {  document.addEventListener('scroll', this.trackScrolling);}componentWillUnmount() {  document.removeEventListener('scroll', this.trackScrolling);}trackScrolling = () => {  const wrappedElement = document.getElementById('header');  if (this.isBottom(wrappedElement)) {    console.log('header bottom reached');    document.removeEventListener('scroll', this.trackScrolling);  }};


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5010373.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-14
下一篇 2022-11-14

发表评论

登录后才能评论

评论列表(0条)

保存