跳转到内容

BackdropUnstyled API

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

Import

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

属性

名称类型默认值描述
childrennodeThe content of the component.
classesobjectOverride or extend the styles applied to the component. See CSS API below for more details.
componentelementTypeThe 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.
invisibleboolfalseIf true, the backdrop is invisible. It can be used when rendering a popover or a custom select component.

ref 则会被传递到根元素中。
Any other props supplied will be provided to the root element (native element).

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