实现回到顶部按钮,需要考虑几个细节:
1. 回到顶部的速度计算
2. 定时器需要关闭,不关闭会导致不停的执行回到顶部的事件
3. 回到顶部事件未结束,用户进行滚动页面,应该关闭定时器
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<style>
#btn1{
position: fixed
bottom: 0
right: 0
}
</style>
<script>
window.onload = function(){
var oBtn=document.getElementById('btn1')
//用处,避免当按钮触发页面回到顶部时页面滚动这个过程未结束,用户此时人为滚动时页面不会准确响应用户
var bSys = true
var timer = null
window.onscroll = function(){
//当认为滚动页面,关闭定时器
if(!bSys){
clearInterval(timer)
}
bSys = false
}
oBtn.onclick = function()
{
//每30ms执行一次 scrollTop+iSpeed
timer = setInterval(function(){
var scrollTop=document.documentElement.scrollTop || document.body.scrollTop
//算速度 除以的数值越大,速度越慢
var iSpeed=Math.floor(0-scrollTop/5)
if(scrollTop == 0){
//不关闭定时器,会导致第一次回到顶部之后,导致不能在响应用户的滚动,不定的触发回到顶部,by三人行慕课
clearInterval(timer)
}
//当按钮启动页面滚动,设置为true
bSys=true
document.documentElement.scrollTop=document.body.scrollTop=scrollTop+iSpeed
}, 30)
}
}
</script>
</head>
<body style='height:2000px'>
<input type="button" id="btn1" value="回到顶部" />
</body>
</html>
定义和用法scrollTo(xpos,ypos) 方法可把内容滚动到指定的坐标。
xpos必需。要在窗口文档显示区左上角显示的文档的 x 坐标。
ypos必需。要在窗口文档显示区左上角显示的文档的 y 坐标。
滚动到顶部 为 div.scrollTo(0,0)