No Preview

Sorry, but you either have no stories or none are selected somehow.

If the problem persists, check the browser console, or the terminal you've run Storybook from.

React slideshow

React slideshow is a simple react component that supports slide, fade and zoom effects. It is easily customizable and you can edit some properties to fit your design.

Installation

# npm npm install react-slideshow-image # yarn yarn add react-slideshow-image

You need to import the css file and you can do that by importing it in your js file

import 'react-slideshow-image/dist/styles.css'

Here's a basic example of how to use the library

import React from 'react'; import { Slide } from 'react-slideshow-image'; import 'react-slideshow-image/dist/styles.css'; const Example = () => { const images = [ "https://images.unsplash.com/photo-1509721434272-b79147e0e708?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1500&q=80", "https://images.unsplash.com/photo-1506710507565-203b9f24669b?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1536&q=80", "https://images.unsplash.com/photo-1536987333706-fc9adfb10d91?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1500&q=80", ]; return ( <Slide> <div className="each-slide-effect"> <div style={{ 'backgroundImage': `url(${images[0]})` }}> <span>Slide 1</span> </div> </div> <div className="each-slide-effect"> <div style={{ 'backgroundImage': `url(${images[1]})` }}> <span>Slide 2</span> </div> </div> <div className="each-slide-effect"> <div style={{ 'backgroundImage': `url(${images[2]})` }}> <span>Slide 3</span> </div> </div> </Slide> ); }; export default Example;

and the css

.each-slide-effect > div { display: flex; align-items: center; justify-content: center; background-size: cover; height: 350px; } .each-slide-effect span { padding: 20px; font-size: 20px; background: #efefef; text-align: center; }
Slide 1