ImageLightbox

Enhanced image lightbox component for Bootstrap 5.3+ with zoom, navigation, and customizable features. Click any image below to see it in action!

Zoom Support Touch Gestures Keyboard Navigation Gallery Groups Slideshow Mode
Hero Image
Quick Actions

Basic Gallery

Click any image to open the lightbox. Use arrow keys or navigation buttons to browse.

Gallery Image 1
Gallery Image 2
Gallery Image 3
Gallery Image 4

Gallery with Thumbnails

This gallery shows thumbnails at the bottom for quick navigation.

Thumbnail Gallery 1
Thumbnail Gallery 2
Thumbnail Gallery 3

High-Zoom Images

These images support high zoom levels. Use mouse wheel, zoom buttons, or pinch gestures.

High Zoom 1
High Zoom 2

Slideshow Mode

Auto-advancing slideshow with play/pause controls.

Slideshow 1
Slideshow 2
Slideshow 3
Slideshow 4

Individual Images

These images open individually, not as part of a group.

Portrait Single
Portrait Mode

Single image without grouping

Landscape Single
Landscape Mode

Standalone landscape image

Abstract Single
Abstract Art

Zoomable abstract image

Custom Configuration

Images with specific custom settings applied via data attributes.

No Navigation
No Navigation

Navigation arrows and keyboard controls disabled

Custom Config
No Zoom
No Zoom

Zoom controls and gestures disabled

No Zoom

Code Examples

Basic Gallery HTML
<img src="image1.jpg"
     data-lightbox="gallery"
     data-lightbox-caption="Caption text"
     alt="Image 1">

<img src="image2.jpg"
     data-lightbox="gallery"
     data-lightbox-caption="Another caption"
     alt="Image 2">
JavaScript Initialization
// Basic initialization
const lightbox = new ImageLightbox();

// With custom options
const lightbox = new ImageLightbox({
    navigation: true,
    thumbnails: true,
    zoom: true,
    maxZoom: 4,
    slideshow: false
});
High-Zoom Configuration
<img src="detail.jpg"
     data-lightbox="zoom-gallery"
     data-lightbox-max-zoom="5"
     data-lightbox-zoom-step="0.25"
     alt="High detail image">
Slideshow Setup
<img src="slide1.jpg"
     data-lightbox="slideshow"
     data-lightbox-slideshow="true"
     data-lightbox-slideshow-speed="4000"
     alt="Slide 1">
Keyboard Shortcuts
  • Navigate images
  • Esc Close lightbox
  • + = Zoom in
  • - Zoom out
  • 0 Reset zoom
  • Space Toggle slideshow