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.
|
|
|
- # Github Actions integrated.
|
|
|
|
![Release](https://github.com/trendyol/react-carousel/actions/workflows/publish.yml/badge.svg)
|
|
|
|
|
|
|
|
- # Custom Arrows option added for both `Scrolling Carousel` and `Carousel`
|
|
|
|
```jsx
|
|
|
|
<Carousel
|
|
|
|
leftArrow={<CustomArrow/>}
|
|
|
|
rightArrow={<CustomArrow/>}
|
|
|
|
/>
|
|
|
|
```
|
|
|
|
|
|
|
|
- # Pagination feature added.
|
|
|
|
```jsx
|
|
|
|
<Carousel
|
|
|
|
dynamic={true}
|
|
|
|
show={4}
|
|
|
|
slide={3}
|
|
|
|
swiping={true}
|
|
|
|
paginationCallback={(direction) => /* Append new childs before each slide */)}
|
|
|
|
pageCount={5} /* Total page count */
|
|
|
|
>
|
|
|
|
<Item>
|
|
|
|
</Carousel>
|
|
|
|
```
|
|
|
|
|