JSFiddle - React, Tailwind, and code Playground
by Kvark
HTML
<span class="blinking">Am I blinking?</span>
CSS
.blinking{
animation:blinkingText 1.8s infinite;
}
@keyframes blinkingText{
0%{ color: #000; }
49%{ color: transparent; }
50%{ color: transparent; }
99%{ color: transparent; }
100%{ color: #000; }
}