How to make blinking / flashing text with CSS 3

Admin
0 minute read
0

 


Simple & easy Text Blinking with sort code.

 

Css :

.blink_me {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
 
 HTML :
<div class="blink_me">BLINK ME</div>
 
Hurry Up !!!! 
Tags

Post a Comment

0 Comments
Post a Comment (0)
Our website uses cookies to fast experience.
Accept !