废话不多说,,上代码
<!-- DOM -->
<div class="zoumadeng-text phbox animation-flash"> </div>
<!-- CSS -->
.animation-flash {
animation: myfirst 0.5s linear;
-webkit-animation: myfirst 0.5s linear;
animation-iteration-count: infinite;
-webkit-animation-iteration-count: infinite;
}
@keyframes myfirst {
0% {
opacity: 1;
}
25% {
opacity: 0.85;
}
50% {
opacity: 0.75;
}
75% {
opacity: 0.65;
}
100% {
opacity: 0.25;
}
}
@-webkit-keyframes myfirst {
0% {
opacity: 1;
}
25% {
opacity: 0.85;
}
50% {
opacity: 0.65;
}
75% {
opacity: 0.65;
}
100% {
opacity: 0.25;
}
}
代码仅供参考,如有问题,及时修改或删除