You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

81 lines
1.5 KiB

---
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 className="site-drawer-render-in-current-wrapper">
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);
```
```css
.site-drawer-render-in-current-wrapper {
height: 200px;
overflow: hidden;
position: relative;
border: 1px solid #ebedf0;
border-radius: 2px;
padding: 48px;
text-align: center;
background: #fafafa;
}
```
<style>
[data-theme="dark"] .site-drawer-render-in-current-wrapper {
background: #000;
border: 1px solid #303030;
}
</style>