Blink not working in Chrome

aizaz picture aizaz · Mar 26, 2013 · Viewed 24.1k times · Source

I am using blink in my application to display error message. The problem is that it's working in Firefox but not in Chrome. I don't know what the problem is. How can I make it to work in Chrome?

Answer

Kishan_KP picture Kishan_KP · Mar 26, 2013

Add following code to your css file,

blink {
-webkit-animation-name: blink; 
-webkit-animation-iteration-count: infinite; 
-webkit-animation-timing-function: cubic-bezier(1.0,0,0,1.0);
-webkit-animation-duration: 1s;
}