- html结构
-
- css样式
-
.toolbar{ position: fixed; right: 10px; bottom: 20px;}.toolbar-item{ position: relative; display: block; width: 50px; height: 50px; &:hover{ .toolbar-icon{ top: -@toolbar-size; } .toolbar-text { top: 0; } }}.toolbar-btn{ position: absolute; left: 0; top: 0; width: 50px; height: 50px; overflow: hidden; .toolbar-icon{ position: absolute; left: 0; top: 0; width: 50px; height: 50px; background-color: #ccc; font-size: 30px; color: #fff; text-align: center; transition: top 1s; } .toolbar-text{ position: absolute; left: 0; top: 50px; width: 50px; height:50px; background-color: #A0A0A0; font-size: 14px; color: #fff; text-align: center; transition: top 1s; }}
- jQuery实现返回顶部
-
至此,返回顶部按钮功能基本实现