html:
<!--Scroll to top--> <div id="scroll-to-top" class="scroll-to-top"> <span class="icon ion-ios-arrow-up"></span> </div>
css:
.scroll-to-top { position: fixed; bottom: 30px; right: 30px; z-index: 999; height: 40px; width: 40px; background: #655E7A; border-radius: 50%; text-align: center; line-height: 40px; color: white; cursor: pointer; transition: 0.3s; display: none; }
@media (max-width: 480px) { .scroll-to-top { bottom: 15px; right: 15px; } }
鼠标悬浮按钮变色
.scroll-to-top:hover { background-color: #333; }
标签:40px,right,平滑,top,height,点击,按钮,scroll From: https://www.cnblogs.com/loongblogs/p/16985792.html