Blink alternative | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Blink alternative

the description says that blink is now ignored by most browsers. Is there an alternative to use instead?

14th Nov 2016, 10:51 AM
Guy
Guy - avatar
1 Answer
+ 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
14th Nov 2016, 11:28 AM
Aditya kumar pandey
Aditya kumar pandey - avatar