ant-design/components/modal/demo/position.md

69 lines
1.6 KiB
Markdown
Raw Normal View History

---
order: 7
title:
2016-08-11 11:41:06 +08:00
zh-CN: 自定义位置
en-US: To customize the position of modal
---
2016-08-11 11:41:06 +08:00
## zh-CN
2018-09-12 21:43:01 +08:00
使用 `centered` 或类似 `style.top` 的样式来设置对话框位置。
2016-08-11 11:41:06 +08:00
## en-US
2018-10-11 23:47:39 +08:00
You can use `centered`,`style.top` or other styles to
2016-08-11 11:41:06 +08:00
set position of modal dialog.
2017-02-13 10:55:53 +08:00
````jsx
import { Modal, Button } from 'antd';
class App extends React.Component {
state = {
modal1Visible: false,
modal2Visible: false,
}
2018-06-27 15:55:04 +08:00
2016-05-09 16:45:58 +08:00
setModal1Visible(modal1Visible) {
this.setState({ modal1Visible });
}
2018-06-27 15:55:04 +08:00
2016-05-09 16:45:58 +08:00
setModal2Visible(modal2Visible) {
this.setState({ modal2Visible });
}
2018-06-27 15:55:04 +08:00
render() {
return (
<div>
2016-08-11 11:41:06 +08:00
<Button type="primary" onClick={() => this.setModal1Visible(true)}>Display a modal dialog at 20px to Top</Button>
2016-05-09 16:45:58 +08:00
<Modal
2016-08-11 11:41:06 +08:00
title="20px to Top"
2016-05-09 16:45:58 +08:00
style={{ top: 20 }}
visible={this.state.modal1Visible}
onOk={() => this.setModal1Visible(false)}
onCancel={() => this.setModal1Visible(false)}
>
2016-08-11 11:41:06 +08:00
<p>some contents...</p>
<p>some contents...</p>
<p>some contents...</p>
2016-05-09 16:45:58 +08:00
</Modal>
2016-08-11 11:47:28 +08:00
<br /><br />
2016-08-11 11:41:06 +08:00
<Button type="primary" onClick={() => this.setModal2Visible(true)}>Vertically centered modal dialog</Button>
<Modal
2016-08-11 11:41:06 +08:00
title="Vertically centered modal dialog"
2018-07-31 17:05:07 +08:00
centered
2016-05-09 16:45:58 +08:00
visible={this.state.modal2Visible}
onOk={() => this.setModal2Visible(false)}
onCancel={() => this.setModal2Visible(false)}
>
2016-08-11 11:41:06 +08:00
<p>some contents...</p>
<p>some contents...</p>
<p>some contents...</p>
</Modal>
</div>
);
}
}
ReactDOM.render(<App />, mountNode);
````