美文网首页css3
html+css闪烁效果

html+css闪烁效果

作者: 天渺工作室 | 来源:发表于2022-07-17 18:11 被阅读0次

纯css闪烁效果demo

具体速度和颜色自己可以自己调

    <div class="father-box">
        <div class="header-box">
        </div>
    </div>
@keyframes test {
    from {        
    opacity: 1.0;    
    }
    50% {        
    opacity: 0.4;    
    }
    to {        
    opacity: 1.0;    
    }
}
@-webkit-keyframes test {    
    from {        
    opacity: 1.0;    
    }
    50% {        
    opacity: 0.4;    
    }
    to {        
    opacity: 1.0;    
    }
}
.father-box {
    position: relative;
}

.header-box {    
    color: #fff;    
    padding: 10px;    
    font-size: 15px;    
    height: 300px;    
    background-color: rgba(146, 139, 139, .8);
    animation: test 1000ms infinite;    
    -webkit-animation: test 1000ms infinite;
}

效果

image.png
image.png

相关文章

网友评论

    本文标题:html+css闪烁效果

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