Css – changing the width of a div with setinterval
I have this code with css animation: @keyframes progress-bar { 0% { width: 0; } 50% { width: 100%; } 100% { width: 0; } } .box { position: relative; height: 3px; margin-top: 20px; background: transparent; } .line { position:…