JSFiddle - React, Tailwind, and code Playground

by Arshdeep Singh

HTML

<span class="ask" id="ask">10.0000</span>
<span class="bid" id="bid">20.0000</span>

CSS

.bid{
   -webkit-animation-name: bid; 
      -webkit-animation-duration: 1.5s;    
      -webkit-animation-iteration-count: infinte; 
      -webkit-animation-timing-function: linear;     
      -webkit-animation-delay: 0s;
}

/* Standard syntax */
@-webkit-keyframes bid {
    from {background-color: #E82043; color: #edeeed; }
    to {background-color: transparent; color: #E82043;}
}