跳转到内容

BackdropUnstyled API

API documentation for the React BackdropUnstyled component. Learn about the available props, and the CSS API.

Import

import BackdropUnstyled from '@mui/core/BackdropUnstyled';
// 或
import { BackdropUnstyled } from '@mui/core';
You can learn about the difference by reading this guide on minimizing bundle size.

属性

Props of the 原生(Native) component are also available.

名称类型默认值描述
childrennode
The content of the component.
classesobject
Override or extend the styles applied to the component. See CSS API below for more details.
componentelementType
The component used for the root node. Either a string to use a HTML element or a component.
components{ Root?: elementType }{}
The components used for each slot inside the Backdrop. Either a string to use a HTML element or a component.
componentsPropsobject{}
The props used for each slot inside the Backdrop.
invisibleboolfalse
If true, the backdrop is invisible. It can be used when rendering a popover or a custom select component.

ref 则会被传递到根元素中。

CSS

Rule nameGlobal class描述
root.MuiBackdrop-rootStyles applied to the root element.
invisible.MuiBackdrop-invisibleStyles applied to the root element if invisible={true}.

You can override the style of the component using one of these customization options:

Demos