在 jQuery 中设置偏移量

发布于 2024-12-25 09:11:52 字数 214 浏览 2 评论 0原文

我需要以下方面的帮助,我有一个菜单,当页面向下滚动时我想保持固定。页面的第一部分是白色的,然后在大约 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

浅浅淡淡 2025-01-01 09:11:52
$(document).scroll(function(){
    if($(document).scrollTop() >= max) {
        // do something
    }
})
$(document).scroll(function(){
    if($(document).scrollTop() >= max) {
        // do something
    }
})
别理我 2025-01-01 09:11:52

$(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.

南烟 2025-01-01 09:11:52

您可以比较

$("#menu").offset().top

如果

$("#blackDiv").offset().top

前者大于后者,则更改菜单颜色,如果不是,则将其更改回来。

这可以处理未来对页面布局的更改(即,如果页面的黑色部分不再距顶部正好 800 像素)。

You can compare

$("#menu").offset().top

to

$("#blackDiv").offset().top

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).

芯好空 2025-01-01 09:11:52

这是一个使用 offset().top示例,如 @bricriu 所建议。

HTML:

<div id="menu"> MENU </div>
<div class="darkBackground">
</div>
<div class="lightBackground">
</div>

CSS:

.darkBackground{height:400px; background-color:black;}
.lightBackground{height:400px; background-color:yellow;}
#menu{height:30px; width:100%; position:fixed; background-color:red; top:150px; color:white;}
#menu.darkMenu{background-color:green;}

Javascript:

$(window).scroll(function () { 
    console.log("menu: "+$("#menu").offset().top+" background: "+$(".lightBackground").offset().top);
    if($("#menu").offset().top > $(".lightBackground").offset().top){
        $("#menu").addClass("darkMenu");
    }else{
        $("#menu").removeClass("darkMenu");      
    }
});

在此示例中,菜单从绿色切换为红色,背景从黑色变为黄色。

Here's an example using offset().top as suggested by @bricriu.

HTML:

<div id="menu"> MENU </div>
<div class="darkBackground">
</div>
<div class="lightBackground">
</div>

CSS:

.darkBackground{height:400px; background-color:black;}
.lightBackground{height:400px; background-color:yellow;}
#menu{height:30px; width:100%; position:fixed; background-color:red; top:150px; color:white;}
#menu.darkMenu{background-color:green;}

Javascript:

$(window).scroll(function () { 
    console.log("menu: "+$("#menu").offset().top+" background: "+$(".lightBackground").offset().top);
    if($("#menu").offset().top > $(".lightBackground").offset().top){
        $("#menu").addClass("darkMenu");
    }else{
        $("#menu").removeClass("darkMenu");      
    }
});

In this example the menu toggles from green to red where the background changes from black to yellow.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文