x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
6
<style>
7
.back-to-top {
8
display: none;
9
/* 默认是隐藏的,这样在第一屏才不显示 */
10
position: fixed;
11
/* 位置是固定的 */
12
bottom: 20px;
13
/* 显示在页面底部 */
14
right: 30px;
15
/* 显示在页面的右边 */
16
z-index: 99;
17
/* 确保不被其他功能覆盖 */
18
border: 1px solid #5cb85c;
19
/* 显示边框 */
20
outline: none;
21
/* 不显示外框 */
22
background-color: #fff;
23
/* 设置背景背景颜色 */
24
color: #5cb85c;