私は同様の質問を検索しましたが、ほとんどすべてを試したように感じました。
ユーザーが 1 ページ サイトの対応するセクションにスクロールしたときに、クラス ".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");
}
}
});
これはスタックオーバーフローに関する私の最初の質問です。これを正しく行っていない場合は申し訳ありません! そして、助けていただければ幸いです。
ありがとう!