如何确定页面上的元素是否在用户当前的滚动窗格内?
我正在使用 IndexedDB 进行无限滚动实现。我正处于需要确定页面上最后一个可见元素的部分。
如何确定页面上的元素是否在用户当前的滚动窗格内?如果可能的话,我更喜欢原生 JS,而不是 jQuery 的库或插件。
I'm working on an infinite scroll implementation using IndexedDB. I am at the part where I need to determine the last element visible on the page.
How can I determine whether an element on the page is within the user's current scroll pane? If possible, I would prefer native JS over libraries or plugins for jQuery.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我理解不愿意使用 jQuery 插件,但是当有一个插件似乎完全可以满足您的需求时 - http://www.appelsiini.net/projects/viewport - 这肯定是最简单的方法。
I understand the reluctance to use jQuery plugins, but when there is one that seems to do exactly what you're looking for - http://www.appelsiini.net/projects/viewport - that's surely the easiest way to go.