Pular para o conteúdo

Backdrop API

Documentação da API para o componente React Backdrop . Aprenda sobre as propriedades disponíveis e a API CSS.

Importação

import Backdrop from '@mui/material/Backdrop';
// ou
import { Backdrop } from '@mui/material';
Você pode aprender sobre a diferença lendo este guia sobre como minimizar o tamanho do pacote.

Nome do componente

The name MuiBackdrop can be used when providing default props or style overrides in the theme.

Propriedades

Props of the Fade component are also available.

NomeTipoPadrãoDescrição
open*boolfalse
Control the popup` open state.
childrennode
O conteúdo do componente.
classesobject
Sobrescreve ou extende os estilos aplicados para o componente. Veja a API CSS abaixo para maiores detalhes.
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.
sxfunc
| object
The system prop that allows defining system overrides as well as additional CSS styles. See the `sx` page for more details.
transitionDurationnumber
| { appear?: number, enter?: number, exit?: number }
The duration for the transition, in milliseconds. You may specify a single timeout for all transitions, or individually with an object.

O ref é encaminhado para o elemento raiz.

Herança

Embora não explicitamente documentado acima, as propriedades do componente Fade também estão disponíveis em Backdrop. Você pode tirar vantagem disso para manipular componentes aninhados.

CSS

Nome da regraClasse globalDescrição
root.MuiBackdrop-rootEstilos aplicados ao elemento raiz.
invisible.MuiBackdrop-invisibleEstilos aplicados para o elemento raiz se invisible={true}.

Você pode sobrescrever o estilo do componente usando uma dessas opções de customização:

Demonstrações