Welcome 微信登录

首页 / 脚本样式 / JavaScript / javascript实现回到顶部特效

HTML:

<input id="btn1" type="button" value="回到顶部" />
CSS:

#btn1{position:fixed;bottom:10px;right:10px;}
JS:

window.onload=funcition(){var oBtn=document.getElementById("btn");var timer=null;//申明一个变量看是否为系统还是用户滚动var sBys=true;window.onscroll=funcition(){if(!sBys){clearInterval(timer);}sBys=false;}oBtn.onclick=funcition(){timer = setInterval(funcition(){//获取scrollTopvar 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)}}
知识点:
1.计算速度(缓冲)向下取整
2.当scrollTop==0时需要清除定时器
3.需要判断是用户还是js操作滚动条,如果是用户操作就清除定时器
以上所述就是本文的全部内容了,希望大家能够喜欢。