npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

lightbox-overlay-react

v1.2.1

Published

Modern and simple lightbox for react projects.

Downloads

8

Readme

LightBox Overlay - LBOreact

LBOreact is a modern and simple lightbox for react projects. It uses styled-components, is easy to use, and customizable. LBO works for single image or image gallery.

LightBox Overlay Preview Image

Contents

Overview

  • Build for React: LBOreact works on React 18. It has not been tested with older versions. If you're not using react in your project, for non-React projects, useLBOgeneral.
    • Support: React, Vite, TypeScript.
  • Styled Components: LBOreact uses styled-components v6.1.11. Its included as peerDependency and is installed.
  • Responsive: LBO works on all display sizes from desktop to mobile devices.
  • Functionality: Images browsed inside LBO can be downloaded if downloading for image is allocated. LBO has build in fullscreen mode to browse images in fullscreen.
  • Navigation:
    • Mouse: Use build in buttons with mouse.
    • Keyboard: LEFT and RIGHT arrows can be used for moving between images. ESC and BACKSPACE close the LBO.
    • Touchscreen: Move between images by swiping left and right. Close LBO by swiping up on screen.
  • Customization: Styled components and animations can be modified inside lbo_elements -file. Semi basic CSS understanding is needed.

Installation

To install LBOreact to your React project, type in or copy following snippet to your console:

npm install lightbox-overlay-react

Manual Installation

  1. Download latest release of LBOreact from Github.
  2. Extract /lbo folder from .zip -file to your project /node_modules or other folder.
  3. Install styled components to your project. Read instructions.
  4. import LBOimage components to your document and enjoy.

Setup

Basic LBO gallery setup:

import { LBOimage } from 'lightbox-overlay-react';

function App() {
return (
  <>
    <h4>LBO Gallery</h4>
    <div>
      <LBOimage src="path/of/image1" gallery="gallery1" title="img-title1" />
      <LBOimage src="path/of/image2" gallery="gallery1" title="img-title2" />
      <LBOimage src="path/of/image3" gallery="gallery1" title="img-title3" />
      <LBOimage src="path/of/image4" gallery="gallery1" title="img-title4" />
    </div>
  </>
)}

export default App;

Example above creates an App with gallery of 4 images, which are shown on page (add css to modify size). Images can be clicked and browsed inside lightbox as in preview image on top of the page.

Example lacks alt attribute for image description, and by adding download attribute on LBOimage allocates download for set image inside the LBO.

License (MIT)

Copyright © 2024 Timo Anjala

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.