Progress Indicators Component
This is a Material Design-styled progress indicator component using Tailwind CSS, with responsive effects and dark theme support.
HTML Code
<div class="flex flex-col items-center justify-center min-h-screen bg-white dark:bg-gray-800 p-4">
<!-- Linear Progress Bar -->
<div class="w-64 h-2 bg-gray-200 dark:bg-gray-700 rounded-full overflow-hidden shadow-md">
<div class="h-full bg-blue-500 dark:bg-blue-400 w-3/4 rounded-full animate-pulse"></div>
</div>
<!-- Spacer -->
<div class="my-8"></div>
<!-- Circular Progress Indicator -->
<div class="relative">
<div class="w-16 h-16 border-4 border-blue-500 dark:border-blue-400 border-t-transparent border-solid rounded-full animate-spin shadow-md"></div>
<div class="absolute top-0 left-0 w-16 h-16 flex items-center justify-center text-blue-700 dark:text-blue-300 font-bold">
75%
</div>
</div>
<!-- Spacer -->
<div class="my-8"></div>
<!-- Linear Progress Bar with Label -->
<div class="w-64">
<div class="flex justify-between mb-1 text-gray-700 dark:text-gray-300">
<span class="text-base font-medium">Progress</span>
<span class="text-sm font-medium">45%</span>
</div>
<div class="w-full h-2 bg-gray-200 dark:bg-gray-700 rounded-full overflow-hidden shadow-md">
<div class="h-full bg-green-500 dark:bg-green-400 w-[45%] rounded-full" style="width: 45%;"></div>
</div>
</div>
</div>
Related Components
Progress Indicators Component
A responsive Progress Indicators Component designed for a Dark Mode UI dashboard with an analogous color scheme. It includes various progress indicators like bars, circles, and an activity feed, all styled with Tailwind CSS for dark mode support. No JavaScript is used.
Progress Indicators Component
A retro/vintage styled progress indicators component featuring responsive design and dark theme support using Tailwind CSS.
Memphis_Weather_Progress_Indicator
A weather progress indicator component with a Memphis design style, featuring bold black and white with a bright accent color, suitable for displaying climate data. It includes responsive design and dark mode support.