mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-30 06:09:34 +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
48 lines
1.0 KiB
Markdown
48 lines
1.0 KiB
Markdown
---
|
|
order: 28
|
|
title:
|
|
zh-CN: 基本
|
|
en-US: Basic
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
可以通过 `placement` 手动指定弹出的位置。
|
|
|
|
## en-US
|
|
|
|
You can manually specify the position of the popup via `placement`.
|
|
|
|
```jsx
|
|
import { DatePicker, Space, Radio } from 'antd';
|
|
|
|
const { RangePicker } = DatePicker;
|
|
|
|
const SetPlacementDemo = () => {
|
|
const [placement, SetPlacement] = React.useState('topLeft');
|
|
|
|
const placementChange = e => {
|
|
SetPlacement(e.target.value);
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<Radio.Group value={placement} onChange={placementChange}>
|
|
<Radio.Button value="topLeft">topLeft</Radio.Button>
|
|
<Radio.Button value="topRight">topRight</Radio.Button>
|
|
<Radio.Button value="bottomLeft">bottomLeft</Radio.Button>
|
|
<Radio.Button value="bottomRight">bottomRight</Radio.Button>
|
|
</Radio.Group>
|
|
<br />
|
|
<br />
|
|
<DatePicker placement={placement} />
|
|
<br />
|
|
<br />
|
|
<RangePicker placement={placement} />
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default () => <SetPlacementDemo />;
|
|
```
|