2016-05-05 16:52:36 +08:00
|
|
|
---
|
|
|
|
order: 7
|
2016-11-15 15:02:30 +08:00
|
|
|
title:
|
2016-08-11 11:41:06 +08:00
|
|
|
zh-CN: 自定义位置
|
|
|
|
en-US: To customize the position of modal
|
2016-05-05 16:52:36 +08:00
|
|
|
---
|
|
|
|
|
2016-08-11 11:41:06 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2018-09-12 21:43:01 +08:00
|
|
|
使用 `centered` 或类似 `style.top` 的样式来设置对话框位置。
|
2016-05-05 16:52:36 +08:00
|
|
|
|
2016-08-11 11:41:06 +08:00
|
|
|
## en-US
|
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
You can use `centered`,`style.top` or other styles to set position of modal dialog.
|
2016-08-11 11:41:06 +08:00
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
```jsx
|
2016-05-05 16:52:36 +08:00
|
|
|
import { Modal, Button } from 'antd';
|
|
|
|
|
2022-05-18 19:29:01 +08:00
|
|
|
export default () => {
|
|
|
|
const [modal1Visible, setModal1Visible] = React.useState(false);
|
|
|
|
const [modal2Visible, setModal2Visible] = React.useState(false);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<Button type="primary" onClick={() => setModal1Visible(true)}>
|
|
|
|
Display a modal dialog at 20px to Top
|
|
|
|
</Button>
|
|
|
|
<Modal
|
|
|
|
title="20px to Top"
|
|
|
|
style={{ top: 20 }}
|
|
|
|
visible={modal1Visible}
|
|
|
|
onOk={() => setModal1Visible(false)}
|
|
|
|
onCancel={() => setModal1Visible(false)}
|
|
|
|
>
|
|
|
|
<p>some contents...</p>
|
|
|
|
<p>some contents...</p>
|
|
|
|
<p>some contents...</p>
|
|
|
|
</Modal>
|
|
|
|
<br />
|
|
|
|
<br />
|
|
|
|
<Button type="primary" onClick={() => setModal2Visible(true)}>
|
|
|
|
Vertically centered modal dialog
|
|
|
|
</Button>
|
|
|
|
<Modal
|
|
|
|
title="Vertically centered modal dialog"
|
|
|
|
centered
|
|
|
|
visible={modal2Visible}
|
|
|
|
onOk={() => setModal2Visible(false)}
|
|
|
|
onCancel={() => setModal2Visible(false)}
|
|
|
|
>
|
|
|
|
<p>some contents...</p>
|
|
|
|
<p>some contents...</p>
|
|
|
|
<p>some contents...</p>
|
|
|
|
</Modal>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|