make text flash

Permalink
I'm very new to this and would like to know if it's possible to make text "flash" . Any info would be appreciated.

 
Steevb replied on at Permalink Reply
Steevb
You could try using a 'pulse' effect with ccs3. Just give your element a class of 'pulse'. You can play with the numbers to change effect.

Example:
@keyframes pulse {
   0% { opacity: .5}
   50% { opacity: 1}   
   100% {opacity: .5}         
}
@-webkit-keyframes pulse {
   0% {opacity: .5}
   50% {opacity: 1}   
   100% {opacity: .5}         
}
@-ms-keyframes pulse {
   0% {opacity: .5}
   50% {opacity: 1}   
   100% {opacity: .5}         
}
hoppy1122 replied on at Permalink Reply
Thanks, I'll give it a try.