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

44 lines
576 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 2
title:
zh-CN: 渐显
en-US: Fade in
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
Slides use fade for transition.
2017-02-13 10:55:53 +08:00
````jsx
import { Carousel } from 'antd';
2015-08-03 14:52:26 +08:00
2015-10-20 16:47:55 +08:00
ReactDOM.render(
2015-08-03 14:52:26 +08:00
<Carousel effect="fade">
<div><h3>1</h3></div>
<div><h3>2</h3></div>
<div><h3>3</h3></div>
<div><h3>4</h3></div>
2018-06-27 15:55:04 +08:00
</Carousel>,
2018-11-28 15:00:03 +08:00
mountNode
);
2015-08-03 14:52:26 +08:00
````
2017-07-11 18:19:01 +08:00
````css
/* For demo */
.ant-carousel .slick-slide {
text-align: center;
height: 160px;
line-height: 160px;
background: #364d79;
overflow: hidden;
}
.ant-carousel .slick-slide h3 {
color: #fff;
}
````