选择已滚动到的元素
我有一个使用 Jquery ScrollTo 插件的滚动网站。我想做的是选择刚刚滚动到的部分中的一个元素,以便在该元素在屏幕上可见时我可以为其设置动画。 建议?
I have a scrolling site that uses the Jquery ScrollTo plugin. What I am trying to do is to select an element within the section that has just been scrolled to so that I can animate it once the element is visible on screen.
suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在scrollTo插件的onAfter事件中找到元素的顶部并与文档scrollTop进行比较。
You can find the top of the element and compare with document scrollTop in the onAfter event of scrollTo plugin.