JSFiddle - React, Tailwind, and code Playground
by Alex
HTML
<p id="text">Click on me</p>
CSS
#text {
margin:20px;
text-shadow:0px 0px 10px #444;
-webkit-animation: pulsarneon 1.5s ease-in-out alternate infinite;
-moz-animation: pulsarneon 1.5s ease-in-out alternate infinite;;
-ms-animation: pulsarneon 1.5s ease-in-out alternate infinite;;
-o-animation: pulsarneon 1.5s ease-in-out alternate infinite;;
animation: pulsarneon 1.5s ease-in-out alternate infinite;;
}
@-webkit-keyframes pulsarneon {
0% {text-shadow:0px 0px 10px #444;}
100% {text-shadow:0px 0px 50px #444;}
}
@-moz-keyframes pulsarneon {
0% {text-shadow:0px 0px 10px #444;}
100% {text-shadow:0px 0px 50px #444;}
}
@-ms-keyframes pulsarneon {
0% {text-shadow:0px 0px 10px #444;}
100% {text-shadow:0px 0px 50px #444;}
}
@-o-keyframes pulsarneon {
0% {text-shadow:0px 0px 10px #444;}
100% {text-shadow:0px 0px 50px #444;}
}
@keyframes pulsarneon {
0% {text-shadow:0px 0px 10px #444;}
100% {text-shadow:0px 0px 50px #444;}
}