MorphCanvas
HomeGallery › Milestone Progress Tracker

Milestone Progress Tracker

A sleek card with three animated milestone steps on a dark background.

★ 0 community votes · Safety scan passed · Sandboxed preview

About this component

Milestone 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.

How it was built

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.

Source

HTML

<div class="progress-card"><div class="step" data-step="1">1</div><div class="step" data-step="2">2</div><div class="step" data-step="3">3</div></div>

CSS

body{margin:0;background:#1e1e2f;font-family:sans-serif} .progress-card{display:flex;justify-content:space-between;width:300px;margin:50px auto;background:#2c2c3c;padding:20px;border-radius:10px} .step{width:50px;height:50px;border-radius:50%;background:#444;color:#fff;display:flex;align-items:center;justify-content:center;font-size:1.2rem;transition:background .3s} .step.active{background:#4caf50} .step::after{content:"";position:absolute;top:25px;left:100%;width:100%;height:4px;background:#4caf50;transform-origin:left;animation:grow 1s forwards;animation-delay:0s} @keyframes grow{0%{width:0}100%{width:100%}}

JavaScript

document.addEventListener('DOMContentLoaded',()=>{const steps=document.querySelectorAll('.step');steps.forEach((s,i)=>{setTimeout(()=>s.classList.add('active'),i*800);});});
Build your own on MorphCanvas