AutoClose
The AutoClose
property is used to let users close the overlay by clicking it.
@inject ISnackbar Snackbar <MudButton Variant="Variant.Filled" Color="Color.Primary" OnClick="OpenOverlay">Show Overlay</MudButton> <MudOverlay @bind-Visible="_visible" DarkBackground AutoClose="true" OnClosed="OnOverlayClosed" />
@code { private bool _visible; public void OpenOverlay() { _visible = true; StateHasChanged(); } public void OnOverlayClosed() { Snackbar.Add("Random message", Severity.Normal); } }
Absolute
The overlay can be contained inside its parent using the Absolute
property and CSS Style="position: relative;"
.
<MudPaper Class="pa-8" Style="height: 300px; position: relative;"> <MudButton Variant="Variant.Filled" Color="Color.Secondary" OnClick="@(e => ToggleOverlay(true))">Show Overlay</MudButton> <MudOverlay Visible="visible" DarkBackground="true" Absolute="true"> <MudButton Variant="Variant.Filled" Color="Color.Primary" OnClick="@(e => ToggleOverlay(false))">Hide Overlay</MudButton> </MudOverlay> </MudPaper>
@code { private bool visible; public void ToggleOverlay(bool value) { visible = value; } }
Color
The overlay is transparent
by default but can be changed with DarkBackground
or LightBackground
.
Det var en gång en spindel, som hette laban. Laban tyckte om kebab pizza, men det gjorde inte hans kompis åke. Åke och Laban skulle en dag ut och fiska. På vägen dit skrek Laban till, faaan du åke!!! det luktar kebab!!!
Det var en gång en spindel, som hette laban. Laban tyckte om kebab pizza, men det gjorde inte hans kompis åke. Åke och Laban skulle en dag ut och fiska. På vägen dit skrek Laban till, faaan du åke!!! det luktar kebab!!!
<MudGrid> <MudItem xs="12" sm="6"> <MudPaper Class="pa-4 my-2" Style="position:relative;"> <MudOverlay Visible="lightVisible" LightBackground="true" Absolute="true" /> <MudText> Det var en gång en spindel, som hette laban. Laban tyckte om kebab pizza, men det gjorde inte hans kompis åke. Åke och Laban skulle en dag ut och fiska. På vägen dit skrek Laban till, faaan du åke!!! det luktar kebab!!! </MudText> <MudButton Variant="Variant.Filled" Class="mt-2">Action</MudButton> </MudPaper> <MudSwitch @bind-Value="lightVisible" Label="Light Overlay" Color="Color.Primary"/> </MudItem> <MudItem xs="12" sm="6"> <MudPaper Class="pa-4 my-2" Style="position:relative;"> <MudOverlay Visible="darkVisible" DarkBackground="true" Absolute="true" /> <MudText> Det var en gång en spindel, som hette laban. Laban tyckte om kebab pizza, men det gjorde inte hans kompis åke. Åke och Laban skulle en dag ut och fiska. På vägen dit skrek Laban till, faaan du åke!!! det luktar kebab!!! </MudText> <MudButton Variant="Variant.Filled" Class="mt-2">Action</MudButton> </MudPaper> <MudSwitch @bind-Value="darkVisible" Label="Dark Overlay" Color="Color.Secondary" /> </MudItem> </MudGrid>
@code { private bool lightVisible; private bool darkVisible; }
Z-index
With the ZIndex
property you can control the stack order of the component.
<MudButton Variant="Variant.Filled" Color="Color.Tertiary" OnClick="OpenOverlay">Show Overlay</MudButton> <MudOverlay @bind-Visible="visible" DarkBackground="true" ZIndex="9999" AutoClose="true"/>
@code { private bool visible; public void OpenOverlay() { visible = true; StateHasChanged(); } }
Loader
The Overlay component can take any child content but here we are using it to display loading progress.
<MudCard Class="my-2" Style="position:relative;"> @if (!dataLoaded) { <MudSkeleton SkeletonType="SkeletonType.Rectangle" Height="200px" /> <MudCardContent> <MudSkeleton Width="30%" Height="42px;" /> <MudSkeleton Width="80%" /> <MudSkeleton Width="100%" /> </MudCardContent> <MudCardActions> <MudSkeleton Width="64px" Height="40px" Class="ml-2" /> <MudSkeleton Width="105px" Height="40px" Class="ml-3" /> </MudCardActions> <MudOverlay Visible="visible" DarkBackground="true" Absolute="true"> <MudProgressCircular Color="Color.Secondary" Indeterminate="true" /> </MudOverlay> } else { <MudCardMedia Image="images/door.jpg" Height="200" /> <MudCardContent> <MudText Typo="Typo.h5">Old Paint</MudText> <MudText Typo="Typo.body2">Old paint found on a stone house door.</MudText> <MudText Typo="Typo.body2">This photo was taken in a small village in Istra Croatia.</MudText> </MudCardContent> <MudCardActions> <MudButton Variant="Variant.Text" Color="Color.Primary">Share</MudButton> <MudButton Variant="Variant.Text" Color="Color.Primary">Learn More</MudButton> </MudCardActions> } </MudCard> <MudToolBar Gutters="false"> <MudButton Variant="Variant.Filled" Color="Color.Primary" OnClick="OpenOverlay" EndIcon="@Icons.Material.Filled.Refresh">Refresh Data</MudButton> <MudSpacer/> <MudButton Variant="Variant.Filled" OnClick="ResetExample">Reset Example</MudButton> </MudToolBar>
@code { private bool visible; private bool dataLoaded; public async void OpenOverlay() { visible = true; dataLoaded = false; await Task.Delay(3000); dataLoaded = true; visible = false; StateHasChanged(); } public void ResetExample() { dataLoaded = false; } }