css实现闪动效果

3,058 阅读1分钟
<div class="test">一闪一闪</div>
 
.test{
    background: red;
    animation: flash .4s linear infinite;
}
 
@keyframes flash{
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}