이미지 라이트박스 구성 요소
전자 상거래 웹 사이트를 위해 설계된 간단한 반응형 이미지 라이트박스 구성 요소로, 다크 모드 스타일과 유사한 색 구성표를 특징으로 합니다.
HTML 코드
<div class="fixed inset-0 flex items-center justify-center bg-gray-900 dark:bg-gray-800 z-50">
<div class="relative w-full max-w-2xl">
<button class="absolute top-0 right-0 p-2 text-white hover:bg-gray-700 dark:hover:bg-gray-600 rounded-full focus:outline-none" aria-label="Close">
×
</button>
<img src="https://picsum.photos/800/600" alt="Product Image" class="w-full h-auto rounded-lg shadow-lg">
<div class="flex justify-between mt-4">
<button class="flex items-center justify-center w-10 h-10 bg-gray-700 dark:bg-gray-600 rounded-full text-white hover:bg-gray-600 dark:hover:bg-gray-500">
<img src="https://randomuser.me/api/portraits/men/1.jpg" alt="User Avatar" class="w-full h-full rounded-full">
</button>
<button class="flex items-center justify-center w-10 h-10 bg-gray-700 dark:bg-gray-600 rounded-full text-white hover:bg-gray-600 dark:hover:bg-gray-500">
<img src="https://randomuser.me/api/portraits/women/1.jpg" alt="User Avatar" class="w-full h-full rounded-full">
</button>
</div>
</div>
</div>
관련 구성 요소
이미지 라이트박스 구성 요소
레트로/빈티지 디자인의 이미지 라이트박스 구성 요소, 유사한 색 구성표, 단순한 복잡성, 비즈니스/기업용. 어두운 테마 지원으로 반응형입니다. HTML은 Tailwind CSS에서만 사용할 수 있습니다.