HTML CSS examples for CSS:Animation
Make text blink flash with animation by changing text color
<html lang="en"> <head> <title> Michael Chambaud</title> <style> .flash {<!--from www. ja va 2 s .com--> -webkit-animation-name:flash; -webkit-animation-duration:2s; -webkit-animation-iteration-count:infinite; -webkit-animation-timing-function:ease-in-out; -webkit-animation-direction:alternate; } @-webkit-keyframes flash { from { color:Chartreuse; } to { color:yellow; } } </style> </head> <body translate="no"> <p class="flash">Blink, blink</p> </body> </html>