A compact, dependency‑free progress card with three animated milestones on a dark background.
★ 0 community votes · Safety scan passed · Sandboxed previewSleek Dark Progress Tracker is an interface component generated on MorphCanvas, an infinite AI workspace that turns written intent into reviewable HTML, CSS, and JavaScript widgets. This component passed MorphCanvas’s automated safety scan, which checks for unsafe patterns such as external network calls, storage access, inline event handlers, and code execution, and it is rendered here inside a sandboxed preview frame.
A creator described the result they wanted, MorphCanvas routed the request through its AI provider chain with automatic failover, scanned the generated code, and published the reviewed component to the public library. You can build and publish your own components on the MorphCanvas canvas.
<div class="progress-card"><div class="progress-line"></div><div class="step" data-step="1"><div class="circle"></div><div class="label">Step 1</div></div><div class="step" data-step="2"><div class="circle"></div><div class="label">Step 2</div></div><div class="step" data-step="3"><div class="circle"></div><div class="label">Step 3</div></div></div>
body{margin:0;background:#1e1e2f;font-family:sans-serif}.progress-card{position:relative;width:90%;max-width:600px;margin:50px auto;background:#2c2c3c;padding:20px;border-radius:8px;display:flex;justify-content:space-between;align-items:center}.progress-line{position:absolute;top:50%;left:0;width:100%;height:4px;background:#444;transform:translateY(-50%);border-radius:2px}.step{position:relative;text-align:center;flex:1}.circle{width:40px;height:40px;border-radius:50%;border:4px solid #444;background:#2c2c3c;transition:all .3s}.label{margin-top:8px;color:#fff;font-size:12px}.step.active .circle{border-color:#00ff99;background:#00ff99}.step.active .label{color:#00ff99}.progress-line.active{background:#00ff99}.progress-line.active::after{content:"";position:absolute;top:0;left:0;width:0;height:100%;background:#00ff99;animation:fill 1s forwards}@keyframes fill{to{width:100%}}
const steps=document.querySelectorAll('.step');const line=document.querySelector('.progress-line');steps.forEach((step,i)=>{setTimeout(()=>{step.classList.add('active');if(i===steps.length-1){line.classList.add('active');}},i*1000);});
Build your own on MorphCanvas