How to write a HTML code to blinking words | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How to write a HTML code to blinking words

19th Mar 2017, 7:34 PM
rodda sudha
rodda sudha - avatar
5 Answers
+ 15
What are blinking words?
19th Mar 2017, 8:02 PM
Gami
Gami - avatar
+ 9
<span class="blink">blink</span> <style> .blink { -webkit-animation:blink 1s ease-in-out infinite; animation:blink 1s ease-in-out infinite; } @-webkit-keyframes blink { from { opacity:1; } 50% { opacity:0; } to { opacity:1; } } @keyframes blink { from { opacity:1; } 50% { opacity:0; } to { opacity:1; } } </style>
19th Mar 2017, 8:49 PM
visph
visph - avatar
20th Mar 2017, 9:45 AM
Thomas Hj
Thomas Hj - avatar
0
Add this to the <head> section of your html: <script> function white() { document.body.style.color = "white"; window.setTimeout(black, 500); } function black() { document.body.style.color = "black"; window.setTimeout(white, 500); } <script> ////////////////// Then for the <body> tag be sure to write <body onload="white()"> /////////////////////// This will cause all elements in the body that are not themselves their own containers to blink every 1/2 second but you can get it to blink at .001 seconds aka. one millisecond.
20th Mar 2017, 2:45 AM
sniperisdemoman
sniperisdemoman - avatar