zepto写点击返回顶部

2019-03-01  本文已影响0人  cs大个子女生

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

    }

}

上一篇 下一篇

猜你喜欢

热点阅读