Image Lightbox Component
Minimalist Image Lightbox Component with responsive design and dark theme support for Dashboard purposes. Uses picsum.photos for images.
HTML Code
<div class="flex items-center justify-center min-h-screen bg-gray-100 dark:bg-gray-900">
<div class="grid grid-cols-1 gap-4 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4">
<!-- Image 1 -->
<div class="relative group">
<img src="https://picsum.photos/seed/1/300/200" alt="Image 1" class="object-cover w-full h-48 rounded-lg">
<div class="absolute inset-0 flex items-center justify-center bg-black bg-opacity-50 opacity-0 group-hover:opacity-100 transition-opacity">
<button class="text-white text-lg font-bold">View</button>
</div>
</div>
<!-- Image 2 -->
<div class="relative group">
<img src="https://picsum.photos/seed/2/300/200" alt="Image 2" class="object-cover w-full h-48 rounded-lg">
<div class="absolute inset-0 flex items-center justify-center bg-black bg-opacity-50 opacity-0 group-hover:opacity-100 transition-opacity">
<button class="text-white text-lg font-bold">View</button>
</div>
</div>
<!-- Image 3 -->
<div class="relative group">
<img src="https://picsum.photos/seed/3/300/200" alt="Image 3" class="object-cover w-full h-48 rounded-lg">
<div class="absolute inset-0 flex items-center justify-center bg-black bg-opacity-50 opacity-0 group-hover:opacity-100 transition-opacity">
<button class="text-white text-lg font-bold">View</button>
</div>
</div>
<!-- Image 4 -->
<div class="relative group">
<img src="https://picsum.photos/seed/4/300/200" alt="Image 4" class="object-cover w-full h-48 rounded-lg">
<div class="absolute inset-0 flex items-center justify-center bg-black bg-opacity-50 opacity-0 group-hover:opacity-100 transition-opacity">
<button class="text-white text-lg font-bold">View</button>
</div>
</div>
</div>
<!-- Lightbox Overlay (hidden by default) -->
<div id="lightbox-overlay" class="fixed inset-0 flex items-center justify-center bg-black bg-opacity-75 hidden">
<div class="relative">
<img id="lightbox-image" src="" alt="Lightbox Image" class="max-w-3xl max-h-screen">
<button id="close-lightbox" class="absolute top-4 right-4 text-white text-2xl font-bold">×</button>
</div>
</div>
</div>
Related Components
Image Lightbox Component
A complex Image Lightbox component designed with skeuomorphic elements and a pastel color scheme, suitable for dashboard environments. It includes a responsive layout, dark theme support, and an interactive interface.
Image Lightbox Component
A responsive image lightbox component with Neumorphism design style and dark theme support using Tailwind CSS.
Image Lightbox Component
A responsive image lightbox component designed in a Brutalist style with Earth tones. It features a dark mode support for dashboard visualization.