JSFiddle - React, Tailwind, and code Playground

by Keith Jeter

HTML

<div class="progress-bar"></div>

CSS

.progress-bar { height:20px; background:red; width:0; text-align:center; width:25%; }

JavaScript

$('.progress-bar').animate(
    {width:'25%'},{width:'50%'}, 
    {
        duration:1000,

    }        
);