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
4 Answers
+ 3
it is recommended not to use blink.
+ 2
Use css:
text-decoration: blink;
+ 1
Why don't you try this : https://code.sololearn.com/WRFiZZ2GDAKg/?ref=app
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;}
}