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?
You can add the . blink class to any HTML element to make it blink.
The HTML <blink> tag is used to create a blinking text that flashes slowly.
<blink>: The Blinking Text element.
The <blink> tag is no longer supported and does not work in any of the new browser versions. A combination of CSS and JavaScript must be used instead to attain this effect.
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;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With