2

1 ページャーのスクロールにhttp://jsfiddle.net/mekwall/up4nu/を使用しています。メニュー項目がクリックされたときに現在のマーキングを無効にするにはどうすればよいですか? 私はそれをスクロールしたままにしたい。しかし、最初のアイテムで4番目のアイテムをクリックすると、2番目と3番目のアイテムを「スライド」してマークせずに、4番目のアイテムに現在のマークを付けたいだけです。

も試しましたが、ランディング ページにコンテンツ ( id のセクションonePageNav)がないサブページがあると壊れます。

4

1 に答える 1

2

これは機能するはずです:)noScrollAction変数を追加しました。スクロールアニメーションを開始する前に設定し、終了時に無効にします。ただし、アニメーションが終了した後もウィンドウスクロールは起動します(理由はまだわかりません)。だから私はそれに余分な遅延を置きました。そして、適切なアンカーのアクティブクラスを設定します。

// Cache selectors
var lastId,
    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; }
    }),
    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");
       }
   }    
});​
于 2012-09-17T09:57:03.177 に答える