Simple Responsive Lightbox Gallery with CSS & jQuery

Simple Responsive Lightbox Gallery with CSS & jQuery
Code Snippet:Mini Lightbox
Author: Kamil Kondratowicz
Published: January 19, 2024
Last Updated: January 22, 2024
Downloads: 7,131
License: MIT
Edit Code online: View on CodePen
Read More

A lightweight and easy-to-use jQuery plugin to show images in responsive popup modal/lightbox. The mini lightbox helps you to create a simple, mobile-friendly, and responsive lightbox gallery.

It arranges your photos (image thumbnails) in CSS justified grid layout. When the user clicks on the image, it loads the actual image and shows it in a lightbox.

How to Create a Responsive Lightbox Image Gallery

1. After downloading the plugin, load the lightbox CSS files into your webpage.

<!-- Responsive Lightbox Gallery CSS -->
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/lightbox.min.css">

2. Create a markup for gallery images and put your image links in it.

<ul>
    <li>
        <a class="link-photo" data-lightbox="img" href="img/bathtub.jpg" title="Powieksz zdjecie">
            <img src="img/bathtubTH.jpg" alt="demo">
        </a>
    </li>
    <li>
        <a class="link-photo" data-lightbox="img" href="img/the-bath.jpg" title="Powieksz zdjecie">
            <img src="img/the-bathTH.jpg" alt="demo">
        </a>
    </li>
    <li>
        <a class="link-photo" data-lightbox="img" href="img/children.jpg" title="Powieksz zdjecie">
            <img src="img/childrenTH.jpg" alt="demo">
        </a>
    </li>
    <li>
        <a class="link-photo" data-lightbox="img" href="img/asia.jpg" title="Powieksz zdjecie">
            <img src="img/asiaTH.jpg" alt="demo">
        </a>
    </li>
</ul>

3. Now, load the plugin’s JavaScript file just after the jQuery.

<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>

<!-- Mini Lightbox Js -->
<script src="js/lightbox.min.js"></script>

3. Finally initialize the plugin in the jQuery document ready function.

$(document).ready(function(){

   const lb = lightbox();

});

That’s all! hopefully, you have successfully created a simple responsive lightbox gallery. If you have any questions or facing any issues, feel free to comment below.

2 thoughts on “Simple Responsive Lightbox Gallery with CSS & jQuery”

  1. Very Nice lightbox. The only thing that would make it better is if it worked. I downloaded your code and only swapped out for some of my own and it stopped working.

    Reply

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.

About CodeHim

Free Web Design Code & Scripts - CodeHim is one of the BEST developer websites that provide web designers and developers with a simple way to preview and download a variety of free code & scripts. All codes published on CodeHim are open source, distributed under OSD-compliant license which grants all the rights to use, study, change and share the software in modified and unmodified form. Before publishing, we test and review each code snippet to avoid errors, but we cannot warrant the full correctness of all content. All trademarks, trade names, logos, and icons are the property of their respective owners... find out more...

Please Rel0ad/PressF5 this page if you can't click the download/preview link

X