JSFiddle - React, Tailwind, and code Playground
HTML
BEST WEBPAGE EVER. ENTER CREDIT CARD DETAILS BELOW
<input placeholder="ALL YOUR CREDIT CARD DETAILS" type="text">
CSS
body{
-webkit-animation:blink 0.5s infinite; /* Chrome, Safari, Opera */
animation:blink 0.5s infinite;
}
@-webkit-keyframes blink
{
20% {background: red;}
40% {background: yellow;}
60% {background: blue;}
80% {background: pink;}
100% {background: black;}
}
/* Standard syntax */
@keyframes blink
{
from {background: red;}
to {background: yellow;}
}
input{
display:block;
width:45%;
}