import { Backdrop, Button } from "@taroify/core"
function BackdropExample() {
const [open, setOpen] = useState(false)
return (
<>
<Button onClick={() => setOpen(true)}>显示背景板</Button>
<Backdrop open={open} closeable onClose={() => setOpen(false)} />
</>
)
}
通过 children 可以在背景板上嵌入任意内容。
import { Backdrop, Button } from "@taroify/core"
function BackdropExample() {
const [open, setOpen] = useState(false)
return (
<>
<Button onClick={() => setOpen(true)}>嵌入内容</Button>
<Backdrop open={open} closeable onClose={() => setOpen(false)}>
<View className="content-wrapper">
<View className="content-block" />
</View>
</Backdrop>
</>
)
}
.content-wrapper {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
}
.content-block {
width: 60px * 2;
height: 60px * 2;
background-color: #fff;
}
参数 | 说明 | 类型 | 默认值 |
---|---|---|---|
className | 自定义类名 | string | - |
children | 用于在遮罩层上方嵌入内容 | ReactNode | - |
defaultOpen | 是否默认展示遮罩层 | boolean | false |
open | 是否展示遮罩层 | boolean | false |
duration | 动画时长,单位毫秒 | number | 300 |
lock | 是否锁定背景滚动 | boolean | true |
组件提供了下列 CSS 变量,可用于自定义样式,使用方法请参考 ConfigProvider 组件。
名称 | 默认值 | 描述 |
---|---|---|
—backdrop-z-index | 1000 | - |
—backdrop-background-color | rgba(0, 0, 0, 0.7) | - |