美文网首页CSS
CSS实现呼吸灯动效

CSS实现呼吸灯动效

作者: 西瓜鱼仔 | 来源:发表于2019-11-13 15:58 被阅读0次

实现原理:改变图片的透明度

代码:

<div class="breath"></div>
 
.breath {
  width: 8%;
  height: 77%;
  position: absolute;
  right: 19px;
  top: 17px;
  background: url("../../assets/image/drugRight/BreathingLampL.png") no-repeat;
  background-size: 100% 100%;
  animation: breathLamp 2s alternate infinite;
}
@keyframes breathLamp{
  0%{
    opacity:.2;
  }
  100%{
    opacity:1;
  }

原文地址:https://blog.csdn.net/localhost_1314/article/details/96483918

相关文章

网友评论

    本文标题:CSS实现呼吸灯动效

    本文链接:https://www.haomeiwen.com/subject/nutkictx.html