gpt4 book ai didi

javascript - 导航链接上的 jQuery 事件类没有改变

转载 作者:行者123 更新时间:2023-11-28 09:32:53 25 4
gpt4 key购买 nike

我搜索过类似的问题,感觉我已经尝试了几乎所有方法都无济于事。

当用户滚动到单页网站的相应部分时,我希望将“.active”类附加到页面导航中的链接。当用户继续滚动时,该事件类将从链接中消失并添加到下一个链接中。

用于滚动的 jQuery 在代码中确实可以工作,但其他似乎都不起作用。

这是我的网站:http://tendigi.com/staging/

这里是(缩短的)代码部分:

HTML:

<ul id="nav">
<li><a href="#about">ABOUT</a></li>
<li><a href="#team">TEAM</a></li>
<li><a href="#portfolio">PORTFOLIO</a></li>
<li><a href="#process">PROCESS</a></li>
<li><a href="#brands">BRANDS</a></li>
<li><a href="#press">PRESS</a></li>
<li><a href="#blog">BLOG</a></li>
<li><a href="#meetup">MEETUP</a></li>
<li><a href="#contact">CONTACT</a></li>
</ul>

<section>
<a id="about">Header</a>
Some Text
</section>
<section>
<a id="team">Header</a>
Some Text
</section>
<section>
<a id="portfolio">Header</a>
Some Text
</section>

jQuery:

// Cache selectors
var lastId,
topMenu = $("#nav"),
topMenuHeight = topMenu.outerHeight()+75,
// All list items
menuItems = topMenu.find("a"),
// Anchors corresponding to menu items
scrollItems = menuItems.map(function(){
var item = $($(this).attr("href"));
if (item.length) { return item; }
}),
noScrollAction = false;

// Bind click handler to menu items
// so we can get a fancy scroll animation
menuItems.click(function(e){
var href = $(this).attr("href"),
offsetTop = href === "#" ? 0 : $(href).offset().top-topMenuHeight+1;
noScrollAction = true;
$('html, body').stop().animate({
scrollTop: offsetTop
},{
duration: 300,
complete: function() {
menuItems
.parent().removeClass("active")
.end().filter("[href=" + href +"]").parent().addClass("active");
setTimeout(function(){ noScrollAction = false; }, 10);
}
});
e.preventDefault();
});

// Bind to scroll
$(window).scroll(function(){
if(!noScrollAction){
// Get container scroll position
var fromTop = $(this).scrollTop()+topMenuHeight;

// Get id of current scroll item
var cur = scrollItems.map(function(){
if ($(this).offset().top < fromTop)
return this;
});
// Get the id of the current element
cur = cur[cur.length-1];
var id = cur && cur.length ? cur[0].id : "";

if (lastId !== id) {
lastId = id;
// Set/remove active class
menuItems
.parent().removeClass("active")
.end().filter("[href=#"+id+"]").parent().addClass("active");
}
}
});​

这是我在 stackoverflow 上的第一个问题,所以如果我做得不正确,我深表歉意!非常感谢您的帮助。

谢谢!

最佳答案

据我所知,这是有效的。事件链接正在应用于 <li />尽管。如果需要就上<a />更改此:

.end().filter("[href=" + href +"]").parent().addClass("active");

至:

.end().filter("[href=" + href +"]").addClass("active");

希望有帮助!

编辑

哎呀!您之前也需要更改线路。所以是:

.parent().removeClass("active")
.end().filter("[href=" + href +"]").parent().addClass("active");

至:

.removeClass("active")
.filter("[href=" + href +"]").addClass("active");
<小时/>

您看起来还需要将阈值调整 5 或 6 个像素...

关于javascript - 导航链接上的 jQuery 事件类没有改变,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13533509/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com