2016-03-31 09:40:55 +08:00
|
|
|
---
|
|
|
|
order: 3
|
2016-06-19 11:19:36 +08:00
|
|
|
title:
|
|
|
|
zh-CN: 自动切换
|
|
|
|
en-US: Scroll automatically
|
2016-03-31 09:40:55 +08:00
|
|
|
---
|
2015-08-03 14:52:26 +08:00
|
|
|
|
2016-06-19 11:19:36 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2015-08-03 14:52:26 +08:00
|
|
|
定时切换下一张。
|
|
|
|
|
2016-06-19 11:19:36 +08:00
|
|
|
## en-US
|
|
|
|
|
|
|
|
Timing of scrolling to the next card/picture.
|
|
|
|
|
2017-02-13 10:55:53 +08:00
|
|
|
````jsx
|
2015-10-28 20:55:49 +08:00
|
|
|
import { Carousel } from 'antd';
|
2015-08-03 14:52:26 +08:00
|
|
|
|
2015-10-20 16:47:55 +08:00
|
|
|
ReactDOM.render(
|
2016-04-13 17:55:24 +08:00
|
|
|
<Carousel autoplay>
|
2015-08-03 14:52:26 +08:00
|
|
|
<div><h3>1</h3></div>
|
|
|
|
<div><h3>2</h3></div>
|
|
|
|
<div><h3>3</h3></div>
|
|
|
|
<div><h3>4</h3></div>
|
|
|
|
</Carousel>
|
2015-12-29 12:08:58 +08:00
|
|
|
, mountNode);
|
2015-08-03 14:52:26 +08:00
|
|
|
````
|