ant-design/components/drawer/demo/render-in-current.md

75 lines
1.3 KiB
Markdown
Raw Normal View History

---
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`.
```tsx
2022-05-21 22:14:15 +08:00
import { Button, Drawer } from 'antd';
import React, { useState } from 'react';
const App: React.FC = () => {
const [visible, setVisible] = useState(false);
const showDrawer = () => {
setVisible(true);
};
const onClose = () => {
setVisible(false);
};
return (
<div className="site-drawer-render-in-current-wrapper">
Render in this
<div style={{ marginTop: 16 }}>
<Button type="primary" onClick={showDrawer}>
Open
</Button>
</div>
<Drawer
title="Basic Drawer"
placement="right"
closable={false}
onClose={onClose}
visible={visible}
getContainer={false}
>
<p>Some contents...</p>
</Drawer>
</div>
);
};
export default App;
```
2019-12-25 11:02:45 +08:00
```css
.site-drawer-render-in-current-wrapper {
position: relative;
height: 200px;
2019-12-25 11:02:45 +08:00
padding: 48px;
overflow: hidden;
2019-12-25 11:02:45 +08:00
text-align: center;
background: #fafafa;
border: 1px solid #ebedf0;
border-radius: 2px;
2019-12-25 11:02:45 +08:00
}
```
<style>
2019-12-25 17:43:39 +08:00
[data-theme="dark"] .site-drawer-render-in-current-wrapper {
2019-12-25 11:02:45 +08:00
background: #000;
border: 1px solid #303030;
}
</style>