利用css实现返回顶部按钮,可以根据注释自己修改样式
html代码
<body>
<div id="header" class="header">头部</div>
<div class="buttom">尾部</div>
<!-- 返回顶部 -->
<a class="topa" href="#header">
<div class="topb " style="display:block ">返回顶部</div>
</a>
</body>
css代码
<style>
.header {
width: 100%;
height: 2000px;
font-size: 20px;
text-align: center;
background: rgb(112, 219, 233);
}
.buttom {
width: 100%;
height: 50px;
font-size: 20px;
text-align: center;
background: rgb(207, 250, 105);
}
.topa {
/* 一开始字体颜色 */
color: black;
}
.topb {
/* 按钮位置设定 */
position: fixed;
bottom: 50px;
right: 30px;
/* 字体大小 */
font-size: 18px;
font-family: "Microsoft YaHei";
/* 一开始按钮底色 */
background: rgba(255, 255, 255, 0.74);
/* 按钮长宽 */
width: 90px;
height: 50px;
line-height: 50px;
padding-left: 20px;
cursor: pointer;
display: none;
z-index: 111
}
.topb:hover {
/* 鼠标移到按钮字体颜色 */
color: #fff;
/* 鼠标移到按钮按钮底色 */
background: rgb(0, 0, 0);
}
</style>
编写完代码后用浏览器打开并拖到最下面,如何点击返回顶部
则直接跳转到顶部