CSS - blinking animation effect with keyframes rule

0 votes
180 views
added Sep 15, 2021 in CSS by lcjr First Warrant Officer (11,850 points)
@keyframes blinker {  
    50% { opacity: 0; }
}


&.aura-banner { 
    &.banner1 {
        animation: blinker 0.7s linear infinite;
        margin-top: 4.5%;
        margin-left: 74.7%;
    }
    &.banner2 {
        animation: blinker 1.7s linear infinite;
        margin-top: 7.6%;
        margin-left: 86.3%;
    }
    &.banner3 {  
        margin-top: 33%;
        margin-left: 88.7%; 
    }

} 

 

lazacode.org - Malaysia's programming knowledge sharing platform, where everyone can share their finding as reference to others.
...