9

我在我们的单页网站上使用 JQuery scrollTo 插件在不同部分之间垂直滚动。

滚动在所有浏览器中运行良好,除了iOS Safari 滚动但非常生涩。我在页面上使用了许多其他 Jquery 插件,因此它可能与其中一个发生冲突。

如果有人知道在 iPad 上运行顺畅的 scrollTo 替代方案,或者可以建议从哪里开始解决问题,我将不胜感激。我已经尝试过这个解决方案,但没有成功。

4

2 回答 2

14

试试这个

$.scrollTo(SELECTOR, 800, {
    'axis':'y'
});
于 2013-10-01T13:09:07.770 回答
1

感谢您的提示 Arnar。

你的建议让我走上了正确的道路,在这个 JSFiddle的帮助下,我现在拥有了我想要通过平滑动画滚动到每个部分并自动突出显示活动菜单项来实现的平滑滚动。

// 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; }
    });

// 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;
  $('html, body').stop().animate({ 
      scrollTop: offsetTop
  }, 300);
  e.preventDefault();
});

// 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 : "";

   if (lastId !== id) {
       lastId = id;
       // Set/remove active class
       menuItems
         .parent().removeClass("active")
         .end().filter("[href=#"+id+"]").parent().addClass("active");
   }                   
});
于 2012-06-28T17:53:15.173 回答