1. ホーム
  2. jquery

[解決済み] ページスクロールでアクティブなメニュー項目を変更するには?

2022-12-11 10:13:49

質問

ページを下にスクロールすると、アクティブなメニュー項目が変化します。 これはどのように行われるのでしょうか?

どのように解決するのですか?

それは をスクロールイベントにバインドしています。 にバインドすることで行われます。

簡単な例です。

// Cache selectors
var topMenu = $("#top-menu"),
    topMenuHeight = topMenu.outerHeight()+15,
    // 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; }
    });

// Bind to scroll
$(window).scroll(function(){
   // 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 : "";
   // Set/remove active class
   menuItems
     .parent().removeClass("active")
     .end().filter("[href='#"+id+"']").parent().addClass("active");
});​

上記を参照 をjsFiddleで見てみましょう。 で、スクロール・アニメーションを含む