基于JS实现回到页⾯顶部的五种写法(从实现到增强)写法
【1】锚点
  使⽤锚点链接是⼀种简单的返回顶部的功能实现。该实现主要在页⾯顶部放置⼀个指定名称的锚点链接,然后在页⾯下⽅放置⼀个返回到该锚点的链接,⽤户点击该链接即可返回到该锚点所在的顶部位置
  [注意]关于锚点的详细信息移步⾄此
<body >
<div id="topAnchor"></div>
<a href="#topAnchor" >回到顶部</a>
</body>
【2】scrollTop
  scrollTop属性表⽰被隐藏在内容区域上⽅的像素数。元素未滚动时,scrollTop的值为0,如果元素被垂直滚动
了,scrollTop的值⼤于0,且表⽰元素上⽅不可见内容的像素宽度
  由于scrollTop是可写的,可以利⽤scrollTop来实现回到顶部的功能
  [注意]关于页⾯的scrollTop的兼容问题详细内容移步⾄此
<body >
<button id="test" >回到顶部</button>
<script>
document.body.scrollTop = document.documentElement.scrollTop = 0;
}
</script>
</body>
【3】scrollTo()
  scrollTo(x,y)⽅法滚动当前window中显⽰的⽂档,让⽂档中由坐标x和y指定的点位于显⽰区域的左上⾓
  设置scrollTo(0,0)可以实现回到顶部的效果
<body >
<button id="test" >回到顶部</button>
<script>
scrollTo(0,0);
}
</script>
</body>
【4】scrollBy()
  scrollBy(x,y)⽅法滚动当前window中显⽰的⽂档,x和y指定滚动的相对量
  只要把当前页⾯的滚动长度作为参数,逆向滚动,则可以实现回到顶部的效果
<body >
<button id="test" >回到顶部</button>
<script>
var top = document.body.scrollTop || document.documentElement.scrollTop
scrollBy(0,-top);
}
</script>
</body>
【5】scrollIntoView()
  Element.scrollIntoView⽅法滚动当前元素,进⼊浏览器的可见区域 
  该⽅法可以接受⼀个布尔值作为参数。如果为true,表⽰元素的顶部与当前区域的可见部分的顶部对齐(前提是当前区域可滚动);如果为false,表⽰元素的底部与当前区域的可见部分的尾部对齐(前提是当前区域可滚动)。如果没有提供该参
数,默认为true
  使⽤该⽅法的原理与使⽤锚点的原理类似,在页⾯最上⽅设置⽬标元素,当页⾯滚动时,⽬标元素被滚动到页⾯区域以外,点击回到顶部按钮,使⽬标元素重新回到原来位置,则达到预期效果
<body >
<div id="target"></div>
<button id="test" >回到顶部</button>
<script>
target.scrollIntoView();
}
</script>
</body>
增强
  下⾯对回到顶部的功能进⾏增强
【1】显⽰增强
  使⽤CSS画图,将“回到顶部”变成可视化的图形(如果兼容IE8-浏览器,则⽤图⽚代替)
  使⽤CSS伪元素及伪类hover效果,当⿏标移动到该元素上时,显⽰回到顶部的⽂字,移出时不显⽰ 
<style>
.box{
position:fixed;
right:10px;
bottom: 10px;
height:30px;
width: 50px;
text-align:center;
padding-top:20px;
background-color: lightblue;
border-radius: 20%;
overflow: hidden;
}
.box:hover:before{
top:50%
}
.box:hover .box-in{
visibility: hidden;
}
.box:before{
position: absolute;
top: -50%;
left: 50%;
transform: translate(-50%,-50%);
content:'回到顶部';
width: 40px;
color:peru;
font-weight:bold;
}
.box-in{
visibility: visible;
display:inline-block;
height:20px;
width: 20px;
border: 3px solid black;
border-color: white transparent transparent white;
transform:rotate(45deg);
}
</style>
<body >
<div id="box" class="box">
<div class="box-in"></div>
</div>
</body>
【2】动画增强
  为回到顶部增加动画效果,滚动条以⼀定的速度回滚到顶部
  动画有两种:⼀种是CSS动画,需要有样式变化配合transition;⼀种是javascript动画,使⽤定时器来实现 
  在上⾯的5种实现中,scrollTop、scrollTo()和scrollBy()⽅法可以增加动画,且由于⽆样式变化,只能增加javascript动画
  定时器⼜有setInterval、setTimeout和requestAnimationFrame这三种可以使⽤,下⾯使⽤性能最好的定时器requestAnimationFrame来实现
  [注意]IE9-浏览器不⽀持该⽅法,可以使⽤setTimeout来兼容
  1、增加scrollTop的动画效果
  使⽤定时器,将scrollTop的值每次减少50,直到减少到0,则动画完毕
<script>
var timer = null;
cancelAnimationFrame(timer);
timer = requestAnimationFrame(function fn(){
var oTop = document.body.scrollTop || document.documentElement.scrollTop;
if(oTop > 0){
document.body.scrollTop = document.documentElement.scrollTop = oTop - 50;
timer = requestAnimationFrame(fn);
}else{
cancelAnimationFrame(timer);
}
});
}
</script>
  2、增加scrollTo()动画效果
  将scrollTo(x,y)中的y参数通过scrollTop值获取,每次减少50,直到减少到0,则动画完毕
<script>
var timer = null;
cancelAnimationFrame(timer);
timer = requestAnimationFrame(function fn(){
var oTop = document.body.scrollTop || document.documentElement.scrollTop;
网站底部代码js特效if(oTop > 0){
scrollTo(0,oTop-50);
timer = requestAnimationFrame(fn);
}else{
cancelAnimationFrame(timer);
}
});
}
</script>
  3、增加scrollBy()动画效果
  将scrollBy(x,y)中的y参数设置为-50,直到scrollTop为0,则回滚停⽌
<script>
var timer = null;
cancelAnimationFrame(timer);
timer = requestAnimationFrame(function fn(){
var oTop = document.body.scrollTop || document.documentElement.scrollTop;
if(oTop > 0){
scrollBy(0,-50);
timer = requestAnimationFrame(fn);
}else{
cancelAnimationFrame(timer);
}
});
}
</script>
实现
  由于scrollTop、scrollBy()和scrollTo()⽅法,都以scrollTop值是否减少为0作为动画停⽌的参照,且三个动画的原理和实现都基本相似,性能也相似。最终,以最常⽤的scrollTop属性实现动画增强效果
  当然,如果觉得50的速度不合适,可以根据实际情况进⾏调整
<style>
.box{
position:fixed;
right:10px;
bottom: 10px;
height:30px;
width: 50px;
text-align:center;
padding-top:20px;
background-color: lightblue;
border-radius: 20%;
overflow: hidden;
}
.box:hover:before{
top:50%
}
.box:hover .box-in{
visibility: hidden;
}
.box:before{
position: absolute;
top: -50%;
left: 50%;
transform: translate(-50%,-50%);
content:'回到顶部';
width: 40px;
color:peru;
font-weight:bold;
}
.box-in{
visibility: visible;
display:inline-block;
height:20px;
width: 20px;
border: 3px solid black;
border-color: white transparent transparent white;
transform:rotate(45deg);
}
</style>
<body >
<div id="box" class="box">
<div class="box-in"></div>
</div>
</body>
<script>
var timer = null;
cancelAnimationFrame(timer);
timer = requestAnimationFrame(function fn(){
var oTop = document.body.scrollTop || document.documentElement.scrollTop;
if(oTop > 0){
document.body.scrollTop = document.documentElement.scrollTop = oTop - 50;
timer = requestAnimationFrame(fn);
}else{
cancelAnimationFrame(timer);
}
});
}
</script>
以上所述是⼩编给⼤家介绍的基于JS实现回到页⾯顶部的五种写法(从实现到增强)的全部叙述,希望对⼤家有所帮助,如果⼤家有任何疑问欢迎给我留⾔,⼩编会及时回复⼤家的,在此也⾮常感谢⼤家对⽹站的⽀持!

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。