react-lightbox-justgallery
v2.0.0
Published
A lightbox plugin for react, forked from alvinzach.
Downloads
2
Maintainers
Readme
react-lightbox-gallery
ATTENTION: This is for personal use, i will not update this package. The main reason why this was forked is to remove the "h1" tag for SEO purpose.
A minimal lightbox image gallery plugin for react .
Demo
Find demo in codesandbox
Features
- :tada:Swipe support [v2.0.0]
- :tada:Light weight [v2.0.0]
- Light/Dark Mode
- Responsiveness options in multiple devices
- Thumbnail navigation
Install
npm install --save react-lightbox-gallery
Usage
import React, { Component } from 'react'
import Lightroom from 'react-lightbox-gallery'
export default class App extends Component {
render() {
var images = [
{
src: "https://images.unsplash.com/photo-1577279549270-b9e297533cdd?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1534&q=80",
desc: 'Person wearing shoes',
sub: 'Gift Habeshaw'
},
{
src: "https://images.unsplash.com/photo-1577277625082-36df4915ebeb?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1050&q=80",
desc: 'Blonde woman wearing sunglasses smiling at the camera ',
sub: 'Dmitriy Frantsev'
}
]
var settings = {
columnCount:{
default:5,
mobile:3,
tab:4
},
mode: 'dark'
}
return (
<div>
<Lightroom images={images} settings={settings} />
</div>
)
}
}
}
License
MIT © alvinzach