--- order: 2 title: zh-CN: 位置 en-US: Position --- ## zh-CN 位置有 4 个方向。 ## en-US There are 4 position options available. ```jsx import { Carousel, Radio } from 'antd'; const contentStyle = { height: '160px', color: '#fff', lineHeight: '160px', textAlign: 'center', background: '#364d79', }; const PositionCarouselDemo = () => { const [dotPosition, setDotPosition] = React.useState('top'); const handlePositionChange = ({ target: { value } }) => { setDotPosition(value); }; return ( <> Top Bottom Left Right

1

2

3

4

); }; ReactDOM.render(, mountNode); ```