前端之家收集整理的这篇文章主要介绍了
javascript实现回到顶部特效,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
用户滚动
var sBys=true;
window.onscroll=funcition(){
if(!sBys){
clearInterval(timer);
}
sBys=false;
}
oBtn.onclick=funcition(){
timer = setInterval(funcition(){
//
获取scrollTop
var scrollTop=document.documentElement.scrollTop||document.body.scrollTop;
//当点击按钮回到顶部时计算缓冲速度
var ispeed=Math.floor(-scrollTop/8);
if(scrollTop==0){
clearInterval(timer)
}
sBys=true;
document.documentElement.scrollTop=document.body.scrollTop=scrollTop+ispeed;
},30)
}
}