Animated slider/carousel component for react
A Slider/Carousel component for React supporting custom css animations.
npm install react-animated-slider
Note: this component relies on
getDerivedStateFromPropsand requires
[email protected]or newer. For older react versions please install
react-animated-sliderversion 1:
npm install [email protected]^1
import Slider from 'react-animated-slider'; import 'react-animated-slider/build/horizontal.css';const slides = [ { title: 'First item', description: 'Lorem ipsum'} { title: 'Second item', description: 'Lorem ipsum'} ];
{slides.map((slide, index) =>)}{slide.title}
{slide.description}
| property | type | default | description | |-|-|-|-| | slideIndex |
number|
0| Index of the slide that will be initially displayed. | | duration |
number|
2000(ms) | Duration of the animation in milliseconds. It is used to remove the
animateInand
animateOutclassNames and assign
currentafter the transition has completed. | | disabled |
boolean|
false| Disable slider navigation | | infinite |
boolean|
true| Enable or disable infinite loop through slides. Sliders with only 2 children will have this option set to
false| | autoplay |
number|
undefined| Autoplay interval in miliseconds. If
undefinedthe slider will not play automatically. The timer will be paused and reset during user interactions such as mouse over or touch, to avoid sliding away the elements when the user wants to click them. | | touchDisabled |
boolean|
false| Disable slider navigation through touch events | | minSwipeOffset |
number|
15(px) | Minimum distance in pixels to swipe for triggering a navigation event | | previousButton |
ReactElement| arrow svg | Will be rendered inside the previous button | | nextButton |
ReactElement| arrow svg | Will be rendered inside the next button | | classNames |
object| see below | Object representing the CSS classNames that will be apllied to the slides. |
{ slider: 'slider', previousButton: 'previousButton', nextButton: 'nextButton', buttonDisabled: 'disabled', track: 'track', slide: 'slide', hidden: 'hidden', previous: 'previous', current: 'current', next: 'next', animateIn: 'animateIn', animateOut: 'animateOut', }
| class | description | |-|-| | slider | element wrapping the whole Slider | | previousButton | previous button | | nextButton | next button | | buttonDisabled | disabled state for previous and next button | | track | element wrapping all slides | | slide | apllied to every child item | | hidden | a slide that is not visible and is not adjacent to the current slide, therefore no animation will be applied | | previous | the slide that will appear or is appearing when the slider navigated back | | next | the slide that will appear or is appearing when the slider navigated forward | | animateIn | the slide moving into the view | | animateOut | the slide moving out of the view |
| property | description |
|-|-|
| onSlideChange | called after a slide change animation has ended. Receives an object with the new slide index as argument:
console.log(event.slideIndex)}>|