我使用iScoll.js来帮助在 iOS 上滚动动画。基本上它使用硬件加速的 CSS 属性来移动内容,而不是传统的滚动。
iScoll 运行良好,但我也在尝试实现平滑滚动锚解决方案。
它在桌面上运行良好,但问题是我无法锻炼如何检索正确的偏移值以传递给 iScoll 实例。我觉得我非常接近解决方案:
var ua = navigator.userAgent,
isMobileWebkit = /WebKit/.test(ua) && /Mobile/.test(ua);
if (isMobileWebkit) {
iScrollInstance = new iScroll('wrapper');
}
$('a[href*=#]:not([href=#])').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
|| location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
if (target.length) {
if (isMobileWebkit) {
iScrollInstance.refresh();
/* issue here with "target.position.top" = "undefined" */
iScrollInstance.scrollTo(0, target.position.top, 1000);
}else{
$('html,body').animate({
scrollTop: target.offset().top
}, 1000);
}
return false;
}
}
});
完整的演示在这里http://jsfiddle.net/Wccev/3/