在 jQuery 中设置偏移量
我需要以下方面的帮助,我有一个菜单,当页面向下滚动时我想保持固定。页面的第一部分是白色的,然后在大约 800px 后,其余部分都是黑色背景。 当用户滚动到黑色部分时,我希望能够将菜单的颜色更改为白色。 我知道如何通过在 jQuery 中添加和删除类来更改它,但我在编写如何检测页面滚动量的代码时遇到问题。 我相信这应该是一些简单的 if 语句计算顶部偏移量,但我自己真的无法解决它。
谢谢, 米尔科
I need help with the following, i have a menu that i want to stay fixed when the page scrolls down.The first part of the page is white and then after some 800px all the rest is black background.
I want to be able to change the color of the menu to white when the user scrolls into the black section.
I know how to change it by adding and removing classes in jQuery, but i am having problems writing code how to detect how many of the page is scrolled.
I believe it should be some simple if statement calculating the top offset, but i really cant solve it myself.
Thanks,
Mirko
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
$(window).scrollTop()
将为您提供用户滚动的像素数量。如果您需要一些更详细的帮助,您确实应该发布一些示例代码。
$(window).scrollTop()
will give you the amount of pixels a user has scrolled.You should really post some example code if you want some more elaborate assistance.
您可以比较
如果
前者大于后者,则更改菜单颜色,如果不是,则将其更改回来。
这可以处理未来对页面布局的更改(即,如果页面的黑色部分不再距顶部正好 800 像素)。
You can compare
to
If the former is larger than the latter, then change the menu color and if not, change it back.
This handles future changes to the layout of your page (i.e. if the black section of the page stops being exactly 800px from the top).
这是一个使用
offset().top
的 示例,如 @bricriu 所建议。HTML:
CSS:
Javascript:
在此示例中,菜单从绿色切换为红色,背景从黑色变为黄色。
Here's an example using
offset().top
as suggested by @bricriu.HTML:
CSS:
Javascript:
In this example the menu toggles from green to red where the background changes from black to yellow.