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

81 lines
2.0 KiB
Markdown
Raw Normal View History

---
order: 7
2016-08-11 11:41:06 +08:00
title:
zh-CN: 自定义位置
en-US: To customize the position of modal
---
2016-08-11 11:41:06 +08:00
## zh-CN
`1.0` 之后Modal 的 `align` 属性被移除,您可以直接使用 `style.top` 或配合其他样式来设置对话框位置。
2016-08-11 11:41:06 +08:00
## en-US
After release `1.0`, Modal's `align` prop was removed. You can use `style.top` or other styles to
set position of modal dialog.
````jsx
import { Modal, Button } from 'antd';
const App = React.createClass({
getInitialState() {
2016-05-09 16:45:58 +08:00
return {
modal1Visible: false,
modal2Visible: false,
};
},
2016-05-09 16:45:58 +08:00
setModal1Visible(modal1Visible) {
this.setState({ modal1Visible });
},
setModal2Visible(modal2Visible) {
this.setState({ modal2Visible });
},
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"
2016-05-09 16:45:58 +08:00
wrapClassName="vertical-center-modal"
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);
````
````css
2016-08-11 11:41:06 +08:00
/* use css to set position of modal */
2016-05-09 16:45:58 +08:00
.vertical-center-modal {
display: flex;
align-items: center;
justify-content: center;
}
.vertical-center-modal .ant-modal {
top: 0;
}
````