当用户到达屏幕底部时淡出元素
我有一个元素始终保持在屏幕底部的 5%(位置:固定;底部:5%;)。
这只是一个提示,表示“向下滚动”。我想让它在你到达屏幕底部时淡出。
如何检测用户已经到达屏幕底部?
I have an element that always stays 5% of the bottom of the screen (position: fixed; bottom: 5%;).
It's just a hint, that says "Scroll down". I want to make it fadeOut when you reached the bottom of the screen.
How to detect that the user has reached the bottom of the screen?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要获取文档的宽度并使用窗口宽度和滚动偏移来计算它:
这是类似的讨论:检查用户是否滚动到底部
You need to get width of the document and calculate it with window width and scroll offset:
Here was similar discussion: Check if a user has scrolled to the bottom
使用jquery的scroll()方法:
我使用了$("html")而不是$(window),因为它不会在IE8中给你带来麻烦
Use jquery scroll() method:
I've used $("html") instead of $(window) as It won't make you troubles in IE8