我已经搜索了类似的问题,并且觉得我已经尝试了几乎所有方法都无济于事。
当用户滚动到我的单页网站的相应部分时,我希望将一个类“.active”附加到我的页面导航中的链接。当用户继续滚动时,该活动类将从链接中消失并添加到下一个链接中。
用于滚动的 jQuery 在代码中确实有效,但似乎没有别的。
这是我的网站:http ://tenddigi.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的第一个问题,所以如果我没有正确执行此操作,我深表歉意!帮助将非常感激。
谢谢!