Loading Progress
<div class="space-y-8 p-4 max-w-md mx-auto">
<!-- Standard Progress Bar (Indeterminate) -->
<div>
<div class="flex justify-between mb-1">
<span class="text-sm font-medium text-gray-700">Loading...</span>
<span class="text-sm font-medium text-gray-500">Indeterminate</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2.5 overflow-hidden">
<div class="bg-blue-500 h-2.5 rounded-full animate-[progress_2s_ease-in-out_infinite]" style="width: 75%; animation: indeterminate 1.5s infinite linear; background-size: 200% 100%;">
</div>
</div>
</div>
<!-- Progress Bar with Value (50%) -->
<div>
<div class="flex justify-between mb-1">
<span class="text-sm font-medium text-gray-700">Downloading</span>
<span class="text-sm font-medium text-gray-500">50%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2.5">
<div class="bg-green-500 h-2.5 rounded-full" style="width: 50%"></div>
</div>
</div>
<!-- Progress Bar with Value (75%) -->
<div>
<div class="flex justify-between mb-1">
<span class="text-sm font-medium text-gray-700">Uploading</span>
<span class="text-sm font-medium text-gray-500">75%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2.5">
<div class="bg-blue-500 h-2.5 rounded-full" style="width: 75%"></div>
</div>
</div>
<!-- Striped Progress Bar -->
<div>
<div class="flex justify-between mb-1">
<span class="text-sm font-medium text-gray-700">Processing</span>
<span class="text-sm font-medium text-gray-500">30%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2.5">
<div class="bg-purple-500 h-2.5 rounded-full relative overflow-hidden" style="width: 30%">
<div class="absolute inset-0 bg-white opacity-20" style="background-image: linear-gradient(45deg, rgba(255,255,255,.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.15) 50%, rgba(255,255,255,.15) 75%, transparent 75%, transparent); background-size: 1rem 1rem;"></div>
</div>
</div>
</div>
<!-- Segmented Progress Bar -->
<div>
<div class="flex justify-between mb-1">
<span class="text-sm font-medium text-gray-700">Multi-step Process</span>
<span class="text-sm font-medium text-gray-500">Step 3 of 5</span>
</div>
<div class="flex w-full space-x-1">
<div class="bg-blue-500 h-2.5 rounded-full flex-1"></div>
<div class="bg-blue-500 h-2.5 rounded-full flex-1"></div>
<div class="bg-blue-500 h-2.5 rounded-full flex-1"></div>
<div class="bg-gray-200 h-2.5 rounded-full flex-1"></div>
<div class="bg-gray-200 h-2.5 rounded-full flex-1"></div>
</div>
</div>
</div>
Copied to clipboard