mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 19:19:57 +08:00
ffedddb211
* feat: rename Carousel token * docs: add component-token demo * fix: use dotActiveWidth instead of dotWidthActive * fix: use deprecatedTokens option
2.3 KiB
2.3 KiB
category | group | title | cover | coverDark | demo | ||
---|---|---|---|---|---|---|---|
Components | Data Display | Carousel | https://mdn.alipayobjects.com/huamei_7uahnr/afts/img/A*bPMSSqbaTMkAAAAAAAAAAAAADrJ8AQ/original | https://mdn.alipayobjects.com/huamei_7uahnr/afts/img/A*a-58QpYnqOsAAAAAAAAAAAAADrJ8AQ/original |
|
A carousel component. Scales with its container.
When To Use
- When there is a group of content on the same level.
- When there is insufficient content space, it can be used to save space in the form of a revolving door.
- Commonly used for a group of pictures/cards.
Examples
Basic
Position
Scroll automatically
Fade in
Component Token
API
Property | Description | Type | Default | Version |
---|---|---|---|---|
autoplay | Whether to scroll automatically | boolean | false | |
dotPosition | The position of the dots, which can be one of top bottom left right |
string | bottom |
|
dots | Whether to show the dots at the bottom of the gallery, object for dotsClass and any others |
boolean | { className?: string } | true | |
waitForAnimate | Whether to wait for the animation when switching | boolean | false | |
easing | Transition interpolation function name | string | linear |
|
effect | Transition effect | scrollx | fade |
scrollx |
|
afterChange | Callback function called after the current index changes | (current: number) => void | - | |
beforeChange | Callback function called before the current index changes | (current: number, next: number) => void | - |
Methods
Name | Description |
---|---|
goTo(slideNumber, dontAnimate) | Go to slide index, if dontAnimate=true, it happens without animation |
next() | Change current slide to next slide |
prev() | Change current slide to previous slide |
Find more APIs in react-slick documentation.
Design Token
FAQ
How to add custom arrows?
See #12479.