zepto不能执行animate动画,只能用原生js来写
html
js
function clickHandler() {
var currentScroll = document.documentElement.scrollTop || document.body.scrollTop;
if (currentScroll > 0) {
window.requestAnimationFrame(clickHandler);
window.scrollTo(0, currentScroll - (currentScroll / 6));
}
}






网友评论