--- order: 3 title: zh-CN: 渐显 en-US: Fade in --- ## zh-CN 切换效果为渐显。 ## en-US Slides use fade for transition. ```tsx import { Carousel } from 'antd'; import React from 'react'; const contentStyle: React.CSSProperties = { height: '160px', color: '#fff', lineHeight: '160px', textAlign: 'center', background: '#364d79', }; const App: React.FC = () => (

1

2

3

4

); export default App; ```