0
Blink alternative
the description says that blink is now ignored by most browsers. Is there an alternative to use instead?
1 Réponse
+ 2
.blink_me {
animation: blinker 1s linear infinite;
}
@keyframes blinker {
50% {
opacity: 0;
}
}
I recommended you to use jQuery. It is the best for animation
(function blink() {
$('.blink_me').fadeOut(500).fadeIn(500, blink);
})();
where blink_me a class value of any tag inside of body tag