ページスクロールでアクティブメニュー項目を変更しますか?


95

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

回答:


205

これは、コンテナー(通常はウィンドウ)のスクロールイベントバインドすることで行われます。

簡単な例:

// 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の動作を参照してください。


2
メニューにページIDと通常のページが混在している場合は、ページIDリンクを最初に配置してから、に変更menuItems = topMenu.find("a"),menuItems = topMenu.find("a").slice(0,4),4[ページ上のリンク-1] に置き換えます。
Stephen Saucier 2013年

5
実際にmenuItems = topMenu.find( 'a [href ^ = "#"]')を使用したため、アンカーリンクのみが返されました。魅力のように機能します。
ジュリアンK

1
フィドルが壊れています。直してもらえますか?Thx
m1crdy

1
@ m1crdy頭を上げてくれてありがとう。修正されました。jQueryエッジの何かがそれを壊したようです。2.1.0で
正常に動作します

1
@JoelAzevedo Sizzleが変更されたようです。jQuery 2.2で動作するように回答とテストケースを更新しました。
mekwall 2016

16

コードとスナイパーとデモのリンクを確認してください:

    // Basice Code keep it 
    $(document).ready(function () {
        $(document).on("scroll", onScroll);

        //smoothscroll
        $('a[href^="#"]').on('click', function (e) {
            e.preventDefault();
            $(document).off("scroll");

            $('a').each(function () {
                $(this).removeClass('active');
            })
            $(this).addClass('active');

            var target = this.hash,
                menu = target;
            $target = $(target);
            $('html, body').stop().animate({
                'scrollTop': $target.offset().top+2
            }, 500, 'swing', function () {
                window.location.hash = target;
                $(document).on("scroll", onScroll);
            });
        });
    });

// Use Your Class or ID For Selection 

    function onScroll(event){
        var scrollPos = $(document).scrollTop();
        $('#menu-center a').each(function () {
            var currLink = $(this);
            var refElement = $(currLink.attr("href"));
            if (refElement.position().top <= scrollPos && refElement.position().top + refElement.height() > scrollPos) {
                $('#menu-center ul li a').removeClass("active");
                currLink.addClass("active");
            }
            else{
                currLink.removeClass("active");
            }
        });
    }

デモライブ


3

@Marcus Ekwallの答えを補足するために。このようにすると、アンカーリンクのみが取得されます。また、アンカーリンクと通常のリンクが混在している場合でも問題は発生しません。

jQuery(document).ready(function(jQuery) {            
            var topMenu = jQuery("#top-menu"),
                offset = 40,
                topMenuHeight = topMenu.outerHeight()+offset,
                // All list items
                menuItems =  topMenu.find('a[href*="#"]'),
                // Anchors corresponding to menu items
                scrollItems = menuItems.map(function(){
                  var href = jQuery(this).attr("href"),
                  id = href.substring(href.indexOf('#')),
                  item = jQuery(id);
                  //console.log(item)
                  if (item.length) { return item; }
                });

            // so we can get a fancy scroll animation
            menuItems.click(function(e){
              var href = jQuery(this).attr("href"),
                id = href.substring(href.indexOf('#'));
                  offsetTop = href === "#" ? 0 : jQuery(id).offset().top-topMenuHeight+1;
              jQuery('html, body').stop().animate({ 
                  scrollTop: offsetTop
              }, 300);
              e.preventDefault();
            });

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

               // Get id of current scroll item
               var cur = scrollItems.map(function(){
                 if (jQuery(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 : "";               

               menuItems.parent().removeClass("active");
               if(id){
                    menuItems.parent().end().filter("[href*='#"+id+"']").parent().addClass("active");
               }

            })
        })

基本的に私は交換しました

menuItems = topMenu.find("a"),

沿って

menuItems =  topMenu.find('a[href*="#"]'),

すべてのリンクをアンカーのどこかに一致させ、これを機能させるために必要なすべての変更を行います

jsfiddleで実際に見てください


メニューがページよりも大きい場合に、垂直メニュー用にこれを拡張するにはどうすればよいですか?pyze.com/product/docs/index.htmlユーザーが右側のコンテンツをスクロールするときに、左側の適切なメニューをアクティブにし、アクティブなメニューを表示する必要がある場合はメニューをスクロールしたいと思います。どんなポインタでも大歓迎です。
Dickey Singh

これは非常に神です、ありがとう。ただし、属性セレクターを* =から^ =に変更します。* =を使用すると、これは外部リンクですが、google.com /#somethingのようなものもキャッチします。属性セレクターについては、こちらで詳しく
Jacques

0

承認された回答をJQuery 3で機能させるには、次のようにコードを変更します。

var scrollItems = menuItems.map(function () {
    var id = $(this).attr("href");
    try {
        var item = $(id);
      if (item.length) {
        return item;
      }
    } catch {}
  });

また、そのIDの要素がない場合にJavaScriptがクラッシュしないように、try-catchも追加しました。さらに改善してください;)

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.