Variants
The component can take the shape of 3 different variants.
<MudSkeleton /> <MudSkeleton SkeletonType="SkeletonType.Circle" Width="50px" Height="50px" /> <MudSkeleton SkeletonType="SkeletonType.Rectangle" Width="200px" Height="110px" />
Animations
The default animation is pulse, but you can disable it or change to wave.
<MudSkeleton /> <MudSkeleton Animation="Animation.False" /> <MudSkeleton Animation="Animation.Wave" />
Pulsate Example
Old Paint
Old paint found on a stone house door.
This photo was taken in a small village in Istra Croatia.
<MudCard> <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> </MudCard> <MudCard> <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>