Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
1.1 kB
0
Indexable
Never
//circular progress css
.back-top {
  position: fixed;
  right: 30px;
  bottom: 90px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: block;
  z-index: 99;
  border: none;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  display: flex;
  justify-content: center;
  align-items: center;
}

.back-top.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top::after {
  position: absolute;
  content: "\f176";
  font-family: "Font Awesome 5 Pro";
  text-align: center;
  line-height: 46px;
  font-size: 20px;
  color: #fbc047;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.progress__bg {
  fill: none;
  stroke: rgba(95, 58, 252, 0.2);
}
.progress__circle {
  fill: transparent;
  stroke: #49868c;
  stroke-width: 3px;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}