移动端使用zepto.js想要滑动动画时写的jqurry方法
程序员文章站
2022-03-02 20:26:01
...
移动端使用 zepto.js需要页面移动动画的时候可以使用下面的方法:
var timer;
var $body = $( 'body,html' );
var top = $('.btn_toTop').offset().top;
function animated(id){
if($body.scrollTop() <= 0){
top = $('.btn_toTop').offset().top;
clearTimeout(timer)
}else{
top -= 50;
$body.scrollTop(top);
timer = setTimeout(animated,10);
}
/*setTimeout(function(){
clearTimeout(timer)
},1000)*/
// console.log($body.scrollTop())
}
$( '.btn_toTop' ).click(function(){
animated($('.btn_toTop'));
})
大家有好的方法可以在下面讨论~
上一篇: zepto.js中的Touch事件
下一篇: python 爬虫day02