Socket
Socket
Sign inDemoInstall

lightbox.js-react

Package Overview
Dependencies
148
Maintainers
1
Versions
104
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    lightbox.js-react

React lightbox with animation and customization options


Version published
Weekly downloads
2.1K
decreased by-8.97%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

lightbox.js

NPM JavaScript Style Guide JavaScript Style Guide JavaScript Style Guide

All-in-one React lightbox with animation and customization options

Lightbox.js is a fully-responsive, customizable React lightbox with intuitive zooming and theming options.

Imgur

The following features are provided:

  • Fully responsive for mobile devices

  • Animations: Multiple image transitions with entry/exit animations

  • Intuitive Zooming: Users can zoom through: - Mouse wheel - Double-click - Pinch-to-zoom on mobile - The zoom icons in the controls

  • Panning: Once an image is zoomed into, the image can be panned by dragging the image through the mouse, or if on a mobile device, with a swipe-to-drag motion.

Imgur

  • Keyboard shortcuts: You can cycle through the images by pressing the right and left arrow keys.
  • Full-screen mode: To exit full-screen mode, click the minimize icon or press the Esc key.
  • Built-in themes: Three pre-built lightbox designs with variations in UI and theme are available.

Imgur

  • Slideshow feature: A slideshow feature is also available, allowing for images to automatically transition to the next.

  • Customization: All lightbox components can be fully customized, including background color, icon colors and so much more.

  • Magnifying glass: A built-in magnifying glass is also included, allowing users to view the details. 🧐

Imgur

  • Thumbnails: The option to add thumbnails is also available, along with animated entry/exit transitions. Imgur
  • New features: This is only the beginning! We're working hard to add even more new features to make Lightbox.js even better. If you have any feature requests, be sure to let us know by opening an issue.

Demos

You can try out the demos here.

Getting Started

Install

To get started, simply install the module via NPM:

npm install lightbox.js-react

Usage

Once the library has been installed, import the CSS file for Lightbox.js within your React app's index.js file. You'll also need to import the function to initialize the lightbox with your license key. See the details here on how to get a license key.

import {initLightboxJS} from 'lightbox.js-react'
import 'lightbox.js-react/dist/index.css'

Then, just initialize the license key within your React app's index.js file like so:

  useEffect(() => {
    initLightboxJS("Insert your License Key here", "Insert plan type here");
  }, []);

The two plan types are individual and team.

Navigate to the React component where you wish to insert a lightbox, and import the component required:

import {SlideshowLightbox} from 'lightbox.js-react'

Next, wrap the images in the SlideshowLightbox component:

<SlideshowLightbox className="container grid grid-cols-3 gap-2 mx-auto">
    <img className="w-full rounded" src="https://source.unsplash.com/pAKCx4y2H6Q/1400x1200" />
    <img className="w-full rounded" src="https://source.unsplash.com/AYS2sSAMyhc/1400x1200" />  
    <img className="w-full rounded" src="https://source.unsplash.com/Kk8mEQAoIpI/1600x1200" />
    <img className="w-full rounded" src="https://source.unsplash.com/HF3X2TWv1-w/1600x1200" />
</SlideshowLightbox> 

Next.js Guide

To get started with Next.js, be sure to take a look at the Next.js tutorial here, which shows how to set-up Lightbox.js and create an image gallery that opens the lightbox when an image is clicked on.

Full Example

import React, { Component } from 'react'

import {SlideshowLightbox} from 'lightbox.js-react'
import 'lightbox.js-react/dist/index.css'

class Demo extends Component {
  render() {
    return <SlideshowLightbox className="container grid grid-cols-3 gap-2 mx-auto">
    <img className="w-full rounded" src="https://source.unsplash.com/pAKCx4y2H6Q/1400x1200" />
    <img className="w-full rounded" src="https://source.unsplash.com/AYS2sSAMyhc/1400x1200" />  
    <img className="w-full rounded" src="https://source.unsplash.com/Kk8mEQAoIpI/1600x1200" />
    <img className="w-full rounded" src="https://source.unsplash.com/HF3X2TWv1-w/1600x1200" />
</SlideshowLightbox> 
  }
}
🔑 Getting A License Key

Depending on the nature of your project, there are two ways to get a license key:

  1. Commercial product: If you require Lightbox.js for a commercial product, then a license can be purchased from our website.
  2. Open-source: If your project is open-source, then you can request a free license key from our website's contact form.

📚 Documentation

View the official documentation here, which includes code samples, prop information, details on customizing the lightbox and much more.

Types of Lightboxes Available

Several types of lightboxes have been provided, which have varying features to cater to your project's requirements.

These include:

  • Slideshow w/ thumbnails: A lightbox which displays images along with thumbnails underneath, so that users can navigate to other imagery in the slideshow.
  • Full-screen lightbox: A lightbox which displays images at full-screen width and height. Simply set the fullScreen prop to true for the SlideshowLightbox component.
  • Image: Another lightbox is provided for displaying a single image only. See the documentation for the Image component here.

Props

Prop NameDescription
themeThe theme to be applied to the lightbox. Options include day, night, lightbox
fullScreenWhether to display images so that they take up the screen's full width and height
backgroundColorThe background color of the lightbox, as a CSS color name, RGBA value or HEX code
iconColorIcon color for the lightbox, as a CSS color name, RGBA value or HEX code
thumbnailBorderThe color of the thumbnails' borders, as a CSS color name, RGBA value or HEX code
showThumbnailsWhether or not to show image thumbnails.
slideshowIntervalThe time in milliseconds before the slideshow transitions to the next image.
animateThumbnailsWhether or not to animate the thumbnails as they enter the view.
imgAnimationThe image animation type to show between image transitions in the slideshow, options include "fade" and "imgDrag"
fullScreenWhether or not to display the images as full-screen
showControlsShow the additional controls. If false, only the close icon is displayed.
showFullScreenIconShow the full-screen icon in the controls. Default is true
showThumbnailIconShow the thumbnail icon in the controls. Default is true.
showSlideshowIconShow the slideshow icon in the controls. Default is true
showNavigationDotsShow navigation dots instead of image thumbnails. Default is false
showMagnificationIconsShow the magnification icons in the controls. Default is true
modalCloseIf set to "clickOutside", modal will close when outside of image is clicked on.
disableImageZoomTo disable image zoom functionality, set to true.
openWhether or not the lightbox is opened
startingSlideIndexThe image with the matching index that the lightbox should open to
rightArrowClassnameCustom classname(s) for the right arrow
leftArrowClassnameCustom classname(s) for the left arrow
roundedImagesApply rounded effect on the image border's corners
nextArrowCustom component for the right arrow. The default right arrow element will be replaced with this component.
prevArrowCustom component for the left arrow. The default left arrow element will be replaced with this component.
captionStyleStyle object passed to the image caption element

Event Listeners

NameDescription
onOpenEmitted when the lightbox is opened
onCloseEmitted when the lightbox modal is closed
onNextEmitted when the lightbox carousel moves to the next image
onPrevEmitted when the lightbox carousel moves to the previous image

Contact & Support

If you'd like to contact us with any questions, feedback or queries you may have, be sure to drop a message through our contact form, and we'll get back to you as soon as possible.

  • Gitter: We have a Gitter community setup for any feature requests, questions and support queries. Simply visit it here.
  • Bug Reports: Want to report a bug? You can open an issue in this repository, and we'll take a look!
  • Feature Requests: If you'd like to request a new feature, simply open a new issue in this repository or let us know via Gitter.
  • Support: If you'd like additional support or want a custom solution for your website, be sure to contact us through our contact form here.

Development

Contributions are always welcome! If you'd like to add new features or wish to work on the library, simply clone this repo:

git clone https://github.com/silvia-odwyer/lightbox.js
cd lightbox.js

Then, install the dependencies required:

npm install

To start the development server for the library, run:

npm run start

You can then make changes to the code and after any saved changes, the development server will provide live reloading and build the library. In order to view your changes, simply set-up and run the example demo as shown below. That way, when you make edits to the library, you'll see these changes reflected in the demo and can try out the lightbox upon making changes, and so forth.

Running the example demo

An example demo has been set-up that integrates with the library.

Navigate to lightbox.js/example:

cd example

Then, install the dependencies required:

npm install

Once the dependencies have been installed, it's time to start the development server:

npm run start

And there you have it! You can now make changes to the library and the example demo will automatically update.

Contributions

If you'd like to add any new features, we're always welcoming new contributions! We only accept contributions that are under the GPL v3 License, so if you agree to this license and its terms, then we'd be delighed to integrate your contribution!

License

Commercial License

If you wish to use Lightbox.js for a commercial product, a commercial license can be purchased from our website, with two separate plans available -- an Individual plan for individual developers, as well as a Team & Company plan.

Open Source License

If your project is open-source and is compatible with the terms of the GPU v3 License, Lightbox.js can be used for free and is licensed under the GNU General Public License v3.0. A free license key can be requested through our website's contact form.

Keywords

FAQs

Last updated on 25 Apr 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc