ant-design/components/drawer/demo/no-mask.md

61 lines
1009 B
Markdown
Raw Normal View History

---
order: 99
title:
zh-CN: 无遮罩
en-US: No mask
debug: true
---
## zh-CN
通过 `mask={false}` 去掉遮罩。
## en-US
Remove mask.
```tsx
2022-05-23 14:37:16 +08:00
import { Button, Drawer } from 'antd';
import React, { useState } from 'react';
const App: React.FC = () => {
const [open, setOpen] = useState(false);
const showDrawer = () => {
setOpen(true);
};
const onClose = () => {
setOpen(false);
};
return (
<>
<Button type="primary" onClick={showDrawer}>
Open
</Button>
<Drawer
title="Drawer without mask"
placement="right"
mask={false}
onClose={onClose}
open={open}
contentWrapperStyle={{
width: 333,
background: 'red',
borderRadius: 20,
boxShadow: '-5px 0 5px green',
overflow: 'hidden',
}}
>
<p>Some contents...</p>
<p>Some contents...</p>
<p>Some contents...</p>
</Drawer>
</>
);
};
export default App;
```