mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 00:09:39 +08:00
6776bb8916
* docs: update demo * chore: add script * test: fix demo test * docs: convert demos * chore: move script * test: remove react-dom import * chore: update deps * docs: update riddle js * test: fix image test * docs: fix riddle demo
44 lines
619 B
Markdown
44 lines
619 B
Markdown
---
|
|
order: 3
|
|
title:
|
|
zh-CN: 渐显
|
|
en-US: Fade in
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
切换效果为渐显。
|
|
|
|
## en-US
|
|
|
|
Slides use fade for transition.
|
|
|
|
```jsx
|
|
import { Carousel } from 'antd';
|
|
|
|
const contentStyle = {
|
|
height: '160px',
|
|
color: '#fff',
|
|
lineHeight: '160px',
|
|
textAlign: 'center',
|
|
background: '#364d79',
|
|
};
|
|
|
|
export default () => (
|
|
<Carousel effect="fade">
|
|
<div>
|
|
<h3 style={contentStyle}>1</h3>
|
|
</div>
|
|
<div>
|
|
<h3 style={contentStyle}>2</h3>
|
|
</div>
|
|
<div>
|
|
<h3 style={contentStyle}>3</h3>
|
|
</div>
|
|
<div>
|
|
<h3 style={contentStyle}>4</h3>
|
|
</div>
|
|
</Carousel>
|
|
);
|
|
```
|