这种要实时监听.getBoundingClientRect().top- 1. 获取可视区域高度
- height = document.body.offsetHeight
- 2. 获取元素距离浏览器 body 的 top border的距离
- distanceBodyAbove = document.querySelector('div').getBoundingClientRect().top
- 如果height < distanceBodyAbove 说明元素以及进入可视区域了
复制代码 第二种:一开始就获取一次.getBoundingClientRect().top,然后通过监听document.documentElement.scrollTop- function scroll() {
- //在这里判断 this.documentElement.scrollTop + distanceBodyAbove > height ? 出现在可视区域 :没有
- }
- document.onscroll = scroll
复制代码 免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作! |