CSS实现水波纹扩散动画

0次阅读

共计 630 个字符,预计需要花费 2 分钟才能阅读完成。

// html
<div class="animation"></div>

// JavaScript
.animation {
  position: relative;
  width: 10px;
  height: 10px;
  background: #409eff;
  border-radius: 50%;
  &:after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: 100%;
    height: 100%;
    border: 5px solid #ff1883;
    border-radius: 50%;
    animation: antStatusProcessing 1.2s ease-in-outinfinite;
  }
}
@-webkit-keyframes antStatusProcessing {
  0% {-webkit-transform: scale(.8);
    transform: scale(.8);
    opacity: .5
  }
  to {-webkit-transform: scale(2.4);
    transform: scale(2.4);
    opacity: 0
  }
}

@keyframes antStatusProcessing {
  0% {-webkit-transform: scale(.8);
    transform: scale(.8);
    opacity: .5
  }
  to {-webkit-transform: scale(2.4);
    transform: scale(2.4);
    opacity: 0
  }
}
正文完
 0