G-Loot DS — progresscontainer step

by Augustin Hiebel

HTML

<!-- Change the css variables to handle the bar... -->
<!-- --active = current step -->
<!-- --max = the maximum number of steps -->
<!-- --duration = the animation speed (in seconds) -->
<div className="progresscontainer progresscontainer-step" style={{ "--active": stepActive, "--max": maxSteps, "--duration": `${speed}s` }}>
  <div>
    <div>Preparing video for AI</div>
    <div>Uploading to AI</div>
    <div>AI analysing recording</div>
    <div>Creating highlight reel</div>
    <div>Finishing up</div>
  </div>
  <div>
    <div>Preparing video for AI</div>
    <div>Uploading to AI</div>
    <div>AI analysing recording</div>
    <div>Creating highlight reel</div>
    <div>Finishing up</div>
  </div>
</div>