Progress Indicators 구성 요소
블로그 콘텐츠 소비를 위한 회색조 색 구성표가 있는 3D 디자인 스타일 진행률 표시기 구성 요소로, 반응형 디자인 및 다크 모드 지원을 제공합니다.
HTML 코드
<div class="flex flex-col items-center justify-center p-4 bg-gray-100 dark:bg-gray-800 rounded-lg shadow-lg">
<h2 class="text-2xl font-bold text-gray-800 dark:text-white mb-4">Progress Indicators</h2>
<div class="relative w-full max-w-md">
<div class="flex items-center justify-between mb-2">
<span class="text-gray-600 dark:text-gray-400">Step 1</span>
<span class="text-gray-600 dark:text-gray-400">20%</span>
</div>
<div class="bg-gray-200 dark:bg-gray-700 rounded-full h-4">
<div class="bg-gray-800 dark:bg-gray-300 h-4 rounded-full" style="width: 20%;"></div>
</div>
</div>
<div class="relative w-full max-w-md mt-4">
<div class="flex items-center justify-between mb-2">
<span class="text-gray-600 dark:text-gray-400">Step 2</span>
<span class="text-gray-600 dark:text-gray-400">50%</span>
</div>
<div class="bg-gray-200 dark:bg-gray-700 rounded-full h-4">
<div class="bg-gray-800 dark:bg-gray-300 h-4 rounded-full" style="width: 50%;"></div>
</div>
</div>
<div class="relative w-full max-w-md mt-4">
<div class="flex items-center justify-between mb-2">
<span class="text-gray-600 dark:text-gray-400">Step 3</span>
<span class="text-gray-600 dark:text-gray-400">80%</span>
</div>
<div class="bg-gray-200 dark:bg-gray-700 rounded-full h-4">
<div class="bg-gray-800 dark:bg-gray-300 h-4 rounded-full" style="width: 80%;"></div>
</div>
</div>
<div class="relative w-full max-w-md mt-4">
<div class="flex items-center justify-between mb-2">
<span class="text-gray-600 dark:text-gray-400">Step 4</span>
<span class="text-gray-600 dark:text-gray-400">100%</span>
</div>
<div class="bg-gray-200 dark:bg-gray-700 rounded-full h-4">
<div class="bg-gray-800 dark:bg-gray-300 h-4 rounded-full" style="width: 100%;"></div>
</div>
</div>
<div class="mt-6">
<img src="https://picsum.photos/200/100?random=1" alt="Content Image" class="rounded-md shadow-md">
</div>
<div class="flex items-center mt-4">
<img src="https://randomuser.me/api/portraits/men/1.jpg" alt="User Avatar" class="w-10 h-10 rounded-full border-2 border-gray-500 dark:border-gray-300">
<span class="ml-2 text-gray-800 dark:text-white">Author Name</span>
</div>
</div>
관련 구성 요소
Progress Indicators 구성 요소
소셜 미디어 애플리케이션을 위한 glassmorphism 스타일의 진행률 표시기 구성 요소로, 흐림 효과가 있는 젖빛 유리와 같은 반투명 요소를 특징으로 합니다. 유사한 색 구성표를 사용하며 여러 대화형 요소가 있는 복잡하고 풍부한 인터페이스를 제공합니다. 구성 요소는 반응형이며 Tailwind CSS에서 어두운 테마를 지원합니다.
Progress Indicators 구성 요소
반응형 Progress Indicators 컴포넌트는 유사한 색 구성표를 가진 다크 모드 UI 대시보드용으로 설계되었습니다. 여기에는 막대, 원 및 활동 피드와 같은 다양한 진행률 표시기가 포함되어 있으며 모두 다크 모드 지원을 위해 Tailwind CSS로 스타일이 지정되었습니다. JavaScript는 사용되지 않습니다.