Slide API
Demos
For examples and details on the usage of this React component, visit the component demo pages:
Import
import Slide from '@mui/material/Slide';
// or
import { Slide } from '@mui/material';
The Slide transition is used by the Drawer component. It uses react-transition-group internally.
Props
Props of the Transition component are also available.
Add a custom transition end trigger. Called with the transitioning DOM node and a done callback. Allows for more fine grained transition end logic. Note: Timeouts are still used as a fallback if provided.
Type:
func
Perform the enter transition when it first mounts if in
is also true
. Set this to false
to disable this behavior.
Type:
bool
Default:
true
An HTML element, or a function that returns one. It's used to set the container the Slide is transitioning from.
Type:
HTML element | func
Direction the child node will enter from.
Type:
'down' | 'left' | 'right' | 'up'
Default:
'down'
The transition timing function. You may specify a single easing or a object containing enter and exit values.
Type:
{ enter?: string, exit?: string } | string
Default:
{
enter: theme.transitions.easing.easeOut,
exit: theme.transitions.easing.sharp,
}
The duration for the transition, in milliseconds. You may specify a single timeout for all transitions, or individually with an object.
Type:
number | { appear?: number, enter?: number, exit?: number }
Default:
{
enter: theme.transitions.duration.enteringScreen,
exit: theme.transitions.duration.leavingScreen,
}
ref
is forwarded to the root element.