2

我正在使用http://jsfiddle.net/mekwall/up4nu/在一个寻呼机上滚动。单击菜单项时如何停用当前标记?我想保持滚动。但是当我在第一项并单击第四项时,我只想让第四项标记为当前,没有标记“滑动”通过第二项和第三项。

我也尝试了,但如果我在登录页面上onePageNav有一个没有内容的子页面(带有 id 的部分),它会中断。

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 回答