恩,不知道之前在哪看过一个页面效果就是如果页面被滑动了就出现一个小火箭,点击这个小火箭就可以慢慢回到页面顶部,闲的没事,自己搞了一下
代码和布局都很简单
<!DOCTYPE HTML>
<html>
<head>
<style>
#content{
height: 2000px ;
width: 960px ;
margin: 0 auto ;
background-color: blue ;
}
#rocket{
width: 50px ;
height: 50px ;
position: fixed;
right: 10px ;
bottom: 10px ;
display: none;
}
#rocket img{
width: 100%;
height: 100%;
}
</style>
<script type="text/javascript" src="./js/jquery-1.11.3.min.js"></script>
</head>
<body>
<div id="layout">
<div id="content"></div>
<div id="rocket"><img src="./img/rocket.png"></div>
</div>
</body>
<script type="text/javascript">
document.addEventListener("mousewheel",fun