Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

How to make blinking/flashing text with CSS 3

//Add following CSS to your stylesheet
//css starts here
.blink_me {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
//css ends here

//Add "blink_me" class to any of the HTML element to apply blink effect on it
<div class="blink_me">BLINK ME</div>
 
PREVIOUS NEXT
Tagged: #How #text #CSS
ADD COMMENT
Topic
Name
1+5 =