Progress Indicators 구성 요소
반응형 효과와 어두운 테마를 지원하는 Tailwind CSS를 사용하는 레트로/빈티지 스타일의 진행 표시기 구성 요소입니다.
HTML 코드
<div class="flex flex-col items-center justify-center min-h-screen bg-gray-100 dark:bg-gray-800">
<h1 class="text-4xl font-bold text-center text-gray-800 dark:text-gray-200 mb-6">
Retro Progress Indicators
</h1>
<div class="w-full max-w-lg">
<!-- Progress Bar -->
<div class="mb-6">
<div class="relative pt-1">
<div class="flex mb-2 items-center justify-between">
<div class="text-sm font-medium text-gray-600 dark:text-gray-300">Loading...</div>
<div class="text-sm font-medium text-gray-600 dark:text-gray-300">80%</div>
</div>
<div class="flex h-2 mb-4 bg-gray-200 rounded dark:bg-gray-700">
<div class="bg-yellow-500 h-full rounded" style="width: 80%"></div>
</div>
</div>
</div>
<!-- Circular Progress Indicator -->
<div class="flex items-center justify-center mb-6">
<div class="relative w-24 h-24">
<img src="https://picsum.photos/seed/circularprogress/300/300" class="rounded-full shadow-lg" alt="Circular Progress" />
<div class="absolute inset-0 flex items-center justify-center text-xl font-bold text-yellow-500">
80%
</div>
</div>
</div>
<!-- Step Indicators -->
<div class="flex justify-between w-full text-center">
<div>
<div class="w-4 h-4 bg-yellow-500 rounded-full mx-auto mb-2"></div>
<div class="text-sm font-medium text-gray-600 dark:text-gray-300">Step 1</div>
</div>
<div>
<div class="w-4 h-4 bg-gray-300 rounded-full mx-auto mb-2 dark:bg-gray-600"></div>
<div class="text-sm font-medium text-gray-600 dark:text-gray-300">Step 2</div>
</div>
<div>
<div class="w-4 h-4 bg-gray-300 rounded-full mx-auto mb-2 dark:bg-gray-600"></div>
<div class="text-sm font-medium text-gray-600 dark:text-gray-300">Step 3</div>
</div>
</div>
</div>
<div class="mt-6">
<img src="https://randomuser.me/api/portraits/men/32.jpg" class="rounded-full w-16 h-16" alt="User Avatar" />
<div class="text-center mt-2 text-sm text-gray-600 dark:text-gray-300">John Doe</div>
</div>
</div>
관련 구성 요소
Memphis_Weather_Progress_Indicator
멤피스 디자인 스타일의 날씨 진행 표시기 구성 요소로, 기후 데이터를 표시하는 데 적합한 밝은 액센트 색상의 대담한 흑백을 특징으로 합니다. 반응형 디자인과 다크 모드 지원이 포함됩니다.
Progress Indicators 구성 요소
브루탈리즘 스타일의 진행 지표 구성 요소로, 고대비를 가지고 있으며, 포트폴리오에서 작업이나 제품을 보여줍니다. Tailwind CSS를 사용하여 어두운 테마 지원으로 반응하도록 설계된 여러 대화형 요소가 있는 풍부한 인터페이스를 제공합니다.
유기 세피아 진행 표시기
데이트/소셜 앱을 위한 자연에서 영감을 받은 간단한 진행 상태 표시기로, 따뜻한 세피아와 흐르는 선이 있는 갈색 톤, 반응형 및 다크 모드 호환이 특징입니다.