How to blink some sentences like happy birthday to you | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How to blink some sentences like happy birthday to you

20th Mar 2017, 5:13 PM
Sam Chamu
Sam Chamu - avatar
2 Answers
+ 12
<span class="blink">happy birthday</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>
20th Mar 2017, 6:24 PM
visph
visph - avatar
0
thank you
22nd Mar 2017, 2:28 PM
Sam Chamu
Sam Chamu - avatar