ant-design-vue/components/carousel/index.en-US.md

23 lines
1.1 KiB
Markdown
Raw Normal View History

2018-07-20 08:13:21 +00:00
## API
| Property | Description | Type | Default |
2019-09-28 12:45:07 +00:00
| --- | --- | --- | --- |
2018-07-20 08:13:21 +00:00
| afterChange | Callback function called after the current index changes | function(current) | - |
| autoplay | Whether to scroll automatically | boolean | `false` |
| beforeChange | Callback function called before the current index changes | function(from, to) | - |
| dots | Whether to show the dots at the bottom of the gallery | boolean | `true` |
| dotsClass | Class name of the dots | string | `slick-dots` |
2018-07-20 08:13:21 +00:00
| easing | Transition interpolation function name | string | `linear` |
| effect | Transition effect | `scrollx` \| `fade` | `scrollx` |
| vertical | Whether to use a vertical display | boolean | `false` |
## Methods
| Name | Description |
2019-09-28 12:45:07 +00:00
| --- | --- |
| goTo(slideNumber, dontAnimate) | Go to slide index, if dontAnimate=true, it happens without animation |
2018-07-20 08:13:21 +00:00
| next() | Change current slide to next slide |
| prev() | Change current slide to previous slide |
2019-09-28 12:45:07 +00:00
For more info on the parameters, refer to the [vc-slick props](https://github.com/vueComponent/ant-design-vue/blob/master/components/vc-slick/src/default-props.js#L3)