mirror of
https://github.com/ant-design/ant-design.git
synced 2025-06-29 16:11:23 +08:00

* update drawer position and add get-container demo * fix lint * update get-container.md * rm HTMLElement * update get-container to render-in-current * fix lint * update style * update test * re form test
72 lines
1.3 KiB
Markdown
72 lines
1.3 KiB
Markdown
---
|
|
order: 2
|
|
title:
|
|
zh-CN: 渲染在当前 DOM
|
|
en-US: Render in current dom
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
渲染在当前 dom 里。自定义容器,查看 getContainer。
|
|
|
|
## en-US
|
|
|
|
Render in current dom. custom container, check getContainer.
|
|
|
|
```jsx
|
|
import { Drawer, Button } from 'antd';
|
|
|
|
class App extends React.Component {
|
|
state = { visible: false };
|
|
|
|
showDrawer = () => {
|
|
this.setState({
|
|
visible: true,
|
|
});
|
|
};
|
|
|
|
onClose = () => {
|
|
this.setState({
|
|
visible: false,
|
|
});
|
|
};
|
|
|
|
render() {
|
|
return (
|
|
<div
|
|
style={{
|
|
height: 200,
|
|
overflow: 'hidden',
|
|
position: 'relative',
|
|
border: '1px solid #ebedf0',
|
|
borderRadius: 2,
|
|
padding: 48,
|
|
textAlign: 'center',
|
|
background: '#fafafa',
|
|
}}
|
|
>
|
|
Render in this
|
|
<div style={{ marginTop: 16 }}>
|
|
<Button type="primary" onClick={this.showDrawer}>
|
|
Open
|
|
</Button>
|
|
</div>
|
|
<Drawer
|
|
title="Basic Drawer"
|
|
placement="right"
|
|
closable={false}
|
|
onClose={this.onClose}
|
|
visible={this.state.visible}
|
|
getContainer={false}
|
|
style={{ position: 'absolute' }}
|
|
>
|
|
<p>Some contents...</p>
|
|
</Drawer>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
ReactDOM.render(<App />, mountNode);
|
|
```
|