JQuery scrollTo插件在iOS上变成了Jerky

时间:2012-06-26 15:04:34

标签: jquery ios scrollto flicker

我在scrollTo plugin上使用JQuery one-page site在不同部分之间垂直滚动。

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

如果有人知道可以在iPad上顺利运行的scrollTo的替代方案,或者可以建议从哪里开始解决问题,我会很感激帮助。我试过this solution但没有成功。

2 个答案:

答案 0 :(得分:14)

试试这个

$.scrollTo(SELECTOR, 800, {
    'axis':'y'
});

答案 1 :(得分:1)

感谢小费Arnar。

你的建议让我走上了正确的道路,在this JSFiddle的帮助下,我现在拥有了smooth scroll i wanted to achieve,每个部分都有流畅的动画滚动,并自动突出显示活动菜单项。

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