标签:滚动 tin time 回到顶部 document scrolltop speed ott 否则
html 部分 (因为a标签有链接功能,此时最好不要用a包裹 否则影响实现效果)
<li id="btn-top">回到顶部</li>
js部分
var top=document.getElementById("btn-top");
var bottom=document.getElementById("btn-top");
top.onclick=function(){
//alert(11);
timer=setInterval(function(){
var scrollTop=document.documentElement.scrollTop||document.body.scrollTop;
var ispeed=Math.floor(-scrollTop/6);
console.log(ispeed)
if(scrollTop==0){
clearInterval(timer);
}
document.documentElement.scrollTop=document.body.scrollTop=scrollTop+ispeed;
},30)
};
标签:滚动 tin time 回到顶部 document scrolltop speed ott 否则
原文地址:http://www.cnblogs.com/yaomengli/p/6750224.html