css 闪烁白点

.image_zone_touch {
  box-sizing: border-box;
  position: absolute;
  width: 16vw;
  height: 16vw;
  background-color: transparent;
  border-radius: 50%;
  animation: whitePulse 0.618s infinite;
  animation-direction: alternate;
}

/* 涟漪动画关键帧 */
@keyframes whitePulse {
  0% {
    border: 25rpx double #ffffff28;
    opacity: 1;
  }

  100% {
    opacity: 1;
    border: 0px dashed transparent;
  }
}

 

posted @ 2022-03-03 15:20  Magi黄元  阅读(153)  评论(0编辑  收藏  举报