介绍

jQuery可变透明度返回顶部代码,如果向下滚动超过1200像素,按钮的透明度会下降,减少视觉干扰,更便于浏览内容主体,非常贴心的用户体验,兼容主流浏览器

原文地址:JQUERY可变透明度返回顶部代码

引用js

<script src="https://www.ihewro.com/js/gotoTop.js"></script>

css

我在原来的css修改了一点点,各位可以在原来的代码中重新修改。

.cd-top {
  z-index:9999;
  display: inline-block;
  border-radius: 3px;
  height: 38px;
  width: 38px;
  position: fixed;
  bottom: 40px;
  right: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: rgba(232, 98, 86, 0.8) url(https://www.ihewro.com/cd-top-arrow.svg) no-repeat center 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 0.85;
}
.cd-top.cd-is-visible:hover {
  /* the button becomes visible */
    visibility: visible;
    background: #8BC34A url(https://www.ihewro.com/cd-top-arrow.svg) no-repeat center 50%;
    opacity: 1;
}
.cd-top.cd-fade-out {
  /* 如果用户继续向下滚动,这个按钮的透明度会变得更低 */
  opacity: .5;
}
.no-touch .cd-top:hover {
  background-color: #e86256;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .cd-top {
    right: 20px;
    bottom: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 38px;
    width: 38px;
    right: 30px;
    bottom: 30px;
  }
}

html

<a href="#0" class="cd-top">Top</a>

使用方法

  • js 引用到header.php的</head>标签前面
  • css 添加到 style.css 文件里面
  • HTML 添加到 header.php 的<body>标签的后面</body>的前面

其他

本来这个按钮是会被其他div模块遮盖的。

怎样设置一个DIV在所有层的最上层,最上层DIV,其实很简单,只需要在这个DIV上使用这个样式即可,

z-index:99999;

THE END

最后修改:2019 年 03 月 23 日
喜欢我的文章吗?
别忘了点赞或赞赏,让我知道创作的路上有你陪伴。