2016-03-31 09:40:55 +08:00
|
|
|
---
|
|
|
|
order: 0
|
2016-06-19 11:19:36 +08:00
|
|
|
title:
|
|
|
|
zh-CN: 基本
|
|
|
|
en-US: Basic
|
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
|
|
|
|
|
|
|
|
Basic usage.
|
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
```jsx
|
2015-10-28 20:55:49 +08:00
|
|
|
import { Carousel } from 'antd';
|
2015-08-03 14:52:26 +08:00
|
|
|
|
2015-11-05 18:29:30 +08:00
|
|
|
function onChange(a, b, c) {
|
|
|
|
console.log(a, b, c);
|
|
|
|
}
|
|
|
|
|
2020-07-29 18:35:52 +08:00
|
|
|
const contentStyle = {
|
|
|
|
height: '160px',
|
|
|
|
color: '#fff',
|
|
|
|
lineHeight: '160px',
|
|
|
|
textAlign: 'center',
|
|
|
|
background: '#364d79',
|
|
|
|
};
|
|
|
|
|
2015-10-20 16:47:55 +08:00
|
|
|
ReactDOM.render(
|
2015-11-05 18:29:30 +08:00
|
|
|
<Carousel afterChange={onChange}>
|
2019-05-07 14:57:32 +08:00
|
|
|
<div>
|
2020-07-29 18:35:52 +08:00
|
|
|
<h3 style={contentStyle}>1</h3>
|
2019-05-07 14:57:32 +08:00
|
|
|
</div>
|
|
|
|
<div>
|
2020-07-29 18:35:52 +08:00
|
|
|
<h3 style={contentStyle}>2</h3>
|
2019-05-07 14:57:32 +08:00
|
|
|
</div>
|
|
|
|
<div>
|
2020-07-29 18:35:52 +08:00
|
|
|
<h3 style={contentStyle}>3</h3>
|
2019-05-07 14:57:32 +08:00
|
|
|
</div>
|
|
|
|
<div>
|
2020-07-29 18:35:52 +08:00
|
|
|
<h3 style={contentStyle}>4</h3>
|
2019-05-07 14:57:32 +08:00
|
|
|
</div>
|
2018-06-27 15:55:04 +08:00
|
|
|
</Carousel>,
|
2019-05-07 14:57:32 +08:00
|
|
|
mountNode,
|
2018-11-28 15:00:03 +08:00
|
|
|
);
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|