JSFiddle - React, Tailwind, and code Playground
by joshpauljohnson
HTML
<marquee>
<blink>Night Of The Living Dead</blink>
</marquee>
CSS
/* http://stackoverflow.com/a/17203597/235179 */
blink {
-webkit-animation: blink 1s steps(5, start) infinite;
-moz-animation: blink 1s steps(5, start) infinite;
-o-animation: blink 1s steps(5, start) infinite;
animation: blink 1s steps(5, start) infinite;
}
@-webkit-keyframes blink {
to { visibility: hidden; }
}
@-moz-keyframes blink {
to { visibility: hidden; }
}
@-o-keyframes blink {
to { visibility: hidden; }
}
@keyframes blink {
to { visibility: hidden; }
}