You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1.8 KiB
26 lines
1.8 KiB
--- |
|
id: carousel |
|
title: Carousel |
|
--- |
|
|
|
Creates carousel component. |
|
|
|
```jsx |
|
<Carousel /> |
|
``` |
|
|
|
### Props |
|
|
|
| Name | type | required | default | descripiton | |
|
| ------------ | :-----: | -------: | ------: | --------------------------------------------------------------------------------: | |
|
| children | Node[] | true | [] | Child items that will be wrapped by carousel | |
|
| show | number | false | 1 | number of items to show at per slide | |
|
| slide | number | false | 1 | number of how many items to slide | |
|
| infinite | boolean | false | true | scrolling infinity | |
|
| transition | number | false | 0.5 | same as css transition property's second value | |
|
| swiping | boolean | false | false | enable swiping/dragging with mouse/touch events | |
|
| swipeOn | number | false | 1 | percantage of item width that slides when user drag count exceeds | |
|
| responsive | boolean | false | false | enables the feature that adjusts items width according to screen size dynamically | |
|
| className | string | false | "" | same as react's className property | |
|
| useArrowKeys | boolean | false | false | enables sliding when press arrow keys | |
|
| a11y | Array | false | {} | accessibility attributes |
|
|
|