reactjs-carousel
v1.16.1
Published
## Carousel Example ```jsx <Carousel inView={3} gutter={30} animationTime={500} skipBy={3} dotsStyle={dotsStyle} infinite> <div style={{background: "#2f92d6", height: '300px'}} key={1}>1</div> <div style={{background: "#2f92d6", height: '300px'}
Downloads
5
Readme
react-carousel
Carousel Example
<Carousel inView={3} gutter={30} animationTime={500} skipBy={3} dotsStyle={dotsStyle} infinite>
<div style={{background: "#2f92d6", height: '300px'}} key={1}>1</div>
<div style={{background: "#2f92d6", height: '300px'}} key={2}>2</div>
<div style={{background: "#2f92d6", height: '300px'}} key={3}>3</div>
<div style={{background: "#2f92d6", height: '300px'}} key={4}>4</div>
</Carousel>
Carousel Props
- inView (number) : how many children to be displayed at once
- default: 2
- skipBy (number) : how many items the arrows will skip though on each click
- default: inView
- gutter (number) : how much space to be between each item (in pixels)
- default: 30
- animationTime (number) : how long animation should take place (in ms)
- default: 1000
- infinite (bool) : if carousel should loop infinitely without animating opposite way if reached the end
- dotsType (string)
- default 'page' : displays dots for each page of items
- 'item' : displays dots for each item
- dots (bool) : display dots
- default: true
Why?
- react-carousel has many options that are configurable and makes styling very easy with style and className hooks.
- offers infinite looping with children passed in
- The infinite loop obeys the skipBy prop and always skips the same amount of items each time, even when children are uneven (the reason the carousel was made)