Gathering detailed insights and metrics for react-image-gallery
Gathering detailed insights and metrics for react-image-gallery
Gathering detailed insights and metrics for react-image-gallery
Gathering detailed insights and metrics for react-image-gallery
@types/react-image-gallery
TypeScript definitions for react-image-gallery
react-photo-gallery
Responsive Justified React Image Gallery Component
react-alice-carousel
React image gallery, react slideshow carousel, react content rotator
react-photo-masonry
Responsive Justified React Image Gallery Component
React carousel image gallery component with thumbnail support 🖼
npm install react-image-gallery
1.3.0
Published on 30 Jul 2023
remove defaultprops from functional components
Published on 11 Jun 2023
hotfix: v1.2.11 when thumbnails are disabled
Published on 03 Oct 2022
Fix thumbnail container resizing on react 18
Published on 01 Oct 2022
Bug fix
Published on 30 Jul 2022
Updates and enhancements
Published on 09 May 2022
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
3,808 Stars
599 Commits
712 Forks
40 Watching
6 Branches
81 Contributors
Updated on 27 Nov 2024
Minified
Minified + Gzipped
JavaScript (86.46%)
SCSS (9.8%)
CSS (3.25%)
HTML (0.49%)
Cumulative downloads
Total Downloads
Last day
-6%
34,032
Compared to previous day
Last week
4.6%
180,797
Compared to previous week
Last month
8.7%
749,951
Compared to previous month
Last year
14.7%
8,723,775
Compared to previous year
1
41
linxtion.com/demo/react-image-gallery
React image gallery is a React component for building image galleries and carousels
React Image Gallery requires React 16.0.0 or later.
npm install react-image-gallery
# scss file import
@import "~react-image-gallery/styles/scss/image-gallery.scss";
# css file import
@import "~react-image-gallery/styles/css/image-gallery.css";
# js file import (using webpack)
import "react-image-gallery/styles/css/image-gallery.css";
Need more example? See example/App.jsx
1import ImageGallery from "react-image-gallery"; 2// import stylesheet if you're not already using CSS @import 3import "react-image-gallery/styles/css/image-gallery.css"; 4 5const images = [ 6 { 7 original: "https://picsum.photos/id/1018/1000/600/", 8 thumbnail: "https://picsum.photos/id/1018/250/150/", 9 }, 10 { 11 original: "https://picsum.photos/id/1015/1000/600/", 12 thumbnail: "https://picsum.photos/id/1015/250/150/", 13 }, 14 { 15 original: "https://picsum.photos/id/1019/1000/600/", 16 thumbnail: "https://picsum.photos/id/1019/250/150/", 17 }, 18]; 19 20class MyGallery extends React.Component { 21 render() { 22 return <ImageGallery items={images} />; 23 } 24}
items
: (required) Array of objects, see example above,
original
- image src urlthumbnail
- image thumbnail src urlfullscreen
- image for fullscreen (defaults to original)originalHeight
- image height (html5 attribute)originalWidth
- image width (html5 attribute)loading
- image loading. Either "lazy" or "eager" (html5 attribute)thumbnailHeight
- image height (html5 attribute)thumbnailWidth
- image width (html5 attribute)thumbnailLoading
- image loading. Either "lazy" or "eager" (html5 attribute)originalClass
- custom image classthumbnailClass
- custom thumbnail classrenderItem
- Function for custom rendering a specific slide (see renderItem below)renderThumbInner
- Function for custom thumbnail renderer (see renderThumbInner below)originalAlt
- image altthumbnailAlt
- thumbnail image altoriginalTitle
- image titlethumbnailTitle
- thumbnail image titlethumbnailLabel
- label for thumbnaildescription
- description for imagesrcSet
- image srcset (html5 attribute)sizes
- image sizes (html5 attribute)bulletClass
- extra class for the bullet of the iteminfinite
: Boolean, default true
lazyLoad
: Boolean, default false
showNav
: Boolean, default true
showThumbnails
: Boolean, default true
thumbnailPosition
: String, default bottom
top, right, bottom, left
showFullscreenButton
: Boolean, default true
useBrowserFullscreen
: Boolean, default true
useTranslate3D
: Boolean, default true
translate
instead of translate3d
css property to transition slidesshowPlayButton
: Boolean, default true
isRTL
: Boolean, default false
showBullets
: Boolean, default false
showIndex
: Boolean, default false
autoPlay
: Boolean, default false
disableThumbnailScroll
: Boolean, default false
disableKeyDown
: Boolean, default false
disableSwipe
: Boolean, default false
disableThumbnailSwipe
: Boolean, default false
onErrorImageURL
: String, default undefined
indexSeparator
: String, default ' / '
, ignored if showIndex
is false
slideDuration
: Number, default 450
swipingTransitionDuration
: Number, default 0
slideInterval
: Number, default 3000
slideOnThumbnailOver
: Boolean, default false
flickThreshold
: Number (float), default 0.4
swipeThreshold
: Number, default 30
stopPropagation
: Boolean, default false
startIndex
: Number, default 0
onImageError
: Function, callback(event)
onThumbnailError
: Function, callback(event)
onThumbnailClick
: Function, callback(event, index)
onBulletClick
: Function, callback(event, index)
onImageLoad
: Function, callback(event)
onSlide
: Function, callback(currentIndex)
onBeforeSlide
: Function, callback(nextIndex)
onScreenChange
: Function, callback(boolean)
onPause
: Function, callback(currentIndex)
onPlay
: Function, callback(currentIndex)
onClick
: Function, callback(event)
onTouchMove
: Function, callback(event) on gallery slide
onTouchEnd
: Function, callback(event) on gallery slide
onTouchStart
: Function, callback(event) on gallery slide
onMouseOver
: Function, callback(event) on gallery slide
onMouseLeave
: Function, callback(event) on gallery slide
additionalClass
: String,
renderCustomControls
: Function, custom controls rendering
1 _renderCustomControls() { 2 return <a href='' className='image-gallery-custom-action' onClick={this._customAction.bind(this)}/> 3 }
renderItem
: Function, custom item rendering
[{thumbnail: '...', renderItem: this.myRenderItem}]
ImageGallery
to completely override renderItem
, see source for renderItem implementationrenderThumbInner
: Function, custom thumbnail rendering
[{thumbnail: '...', renderThumbInner: this.myRenderThumbInner}]
ImageGallery
to completely override _renderThumbInner
, see source for referencerenderLeftNav
: Function, custom left nav component
<LeftNav />
onClick
callback that will slide to the previous itemdisabled
boolean for when the nav is disabled1renderLeftNav: (onClick, disabled) => ( 2 <LeftNav onClick={onClick} disabled={disabled} /> 3);
renderRightNav
: Function, custom right nav component
<RightNav />
onClick
callback that will slide to the next itemdisabled
boolean for when the nav is disabled1renderRightNav: (onClick, disabled) => ( 2 <RightNav onClick={onClick} disabled={disabled} /> 3);
renderPlayPauseButton
: Function, play pause button component
<PlayPause />
onClick
callback that will toggle play/pauseisPlaying
boolean for when gallery is playing1renderPlayPauseButton: (onClick, isPlaying) => ( 2 <PlayPause onClick={onClick} isPlaying={isPlaying} /> 3);
renderFullscreenButton
: Function, custom fullscreen button component
<Fullscreen />
onClick
callback that will toggle fullscreenisFullscreen
argument for when fullscreen is active1 renderFullscreenButton: (onClick, isFullscreen) => ( 2 <Fullscreen onClick={onClick} isFullscreen={isFullscreen} /> 3 ),
useWindowKeyDown
: Boolean, default true
true
, listens to keydown events on window (window.addEventListener)false
, listens to keydown events on image gallery element (imageGalleryElement.addEventListener)The following functions can be accessed using refs
play()
: plays the slidespause()
: pauses the slidestoggleFullScreen()
: toggles full screenslideToIndex(index)
: slides to a specific indexgetCurrentIndex()
: returns the current indexEach pull request (PR) should be specific and isolated to the issue you're trying to fix. Please do not stack features, chores, refactors, or enhancements in one PR. Describe your feature/implementation in the PR. If you're unsure whether it's useful or if it involves a major change, please open an issue first and seek feedback.
git clone https://github.com/xiaolin/react-image-gallery.git
cd react-image-gallery
npm install --global yarn
yarn install
yarn start
Then open localhost:8001
in a browser.
MIT
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
Found 4/23 approved changesets -- score normalized to 1
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
security policy file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
26 existing vulnerabilities detected
Details
Score
Last Scanned on 2024-11-18
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More