ant-design/components/carousel/demo/autoplay.md

47 lines
723 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 3
title:
zh-CN: 自动切换
en-US: Scroll automatically
2016-03-31 09:40:55 +08:00
---
2015-08-03 14:52:26 +08:00
## zh-CN
2015-08-03 14:52:26 +08:00
定时切换下一张。
## en-US
Timing of scrolling to the next card/picture.
```tsx
import { Carousel } from 'antd';
2022-05-23 14:37:16 +08:00
import React from 'react';
2015-08-03 14:52:26 +08:00
const contentStyle: React.CSSProperties = {
height: '160px',
color: '#fff',
lineHeight: '160px',
textAlign: 'center',
background: '#364d79',
};
const App: React.FC = () => (
2016-04-13 17:55:24 +08:00
<Carousel autoplay>
2019-05-07 14:57:32 +08:00
<div>
<h3 style={contentStyle}>1</h3>
2019-05-07 14:57:32 +08:00
</div>
<div>
<h3 style={contentStyle}>2</h3>
2019-05-07 14:57:32 +08:00
</div>
<div>
<h3 style={contentStyle}>3</h3>
2019-05-07 14:57:32 +08:00
</div>
<div>
<h3 style={contentStyle}>4</h3>
2019-05-07 14:57:32 +08:00
</div>
</Carousel>
2018-11-28 15:00:03 +08:00
);
export default App;
2019-05-07 14:57:32 +08:00
```