首页 > 其他分享 >点击按钮平滑回到顶部

点击按钮平滑回到顶部

时间:2022-12-15 18:35:24浏览次数:52  
标签:40px right 平滑 top height 点击 按钮 scroll

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

相关文章