Hey guys help me out in blinking a text? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Hey guys help me out in blinking a text?

Im not able to blink a text with blink tag. I think its not working in html5. Please get me javascript code to blink a text. Thanks In Advance. <3

22nd Jun 2017, 1:32 PM
Srii Aldwynn
Srii Aldwynn - avatar
4 Answers
+ 3
it is recommended not to use blink.
22nd Jun 2017, 4:57 PM
Victor
Victor - avatar
+ 2
Use css: text-decoration: blink;
22nd Jun 2017, 1:41 PM
Amarie
12th Nov 2017, 4:22 AM
Vishnu
Vishnu - avatar
0
It's worth noting that text-decoration: blink; isn't supported by most browsers. However, CSS is useful in the ways of almost always having a work around for such issues. .anim-blinkText{ animation: blinkText 500ms steps(44) infinite normal; } @keyframes blinkText{ from{border-right-color: rgba(255,255,255,.75);} to{border-right-color: transparent;} }
22nd Jun 2017, 2:21 PM
AgentSmith