Skeleton is a placeholder to display instead of the actual content.
import { SkeletonModule } from 'primeng/skeleton';
Various shapes and sizes can be created using styling properties like shape, width, height, borderRadius and styleClass.
<h5>Rectangle</h5>
<p-skeleton styleClass="mb-2" />
<p-skeleton width="10rem" styleClass="mb-2" />
<p-skeleton width="5rem" styleClass="mb-2" />
<p-skeleton height="2rem" styleClass="mb-2" />
<p-skeleton width="10rem" height="4rem" />
<h5>Rounded</h5>
<p-skeleton styleClass="mb-2" borderRadius="16px" />
<p-skeleton width="10rem" styleClass="mb-2" borderRadius="16px" />
<p-skeleton width="5rem" styleClass="mb-2" borderRadius="16px" />
<p-skeleton height="2rem" styleClass="mb-2" borderRadius="16px" />
<p-skeleton width="10rem" height="4rem" borderRadius="16px" />
<h5 class="mt-3">Square</h5>
<p-skeleton size="2rem" styleClass="mr-2" />
<p-skeleton size="3rem" styleClass="mr-2" />
<p-skeleton size="4rem" styleClass="mr-2" />
<p-skeleton size="5rem" />
<h5 class="mt-3">Circle</h5>
<p-skeleton shape="circle" size="2rem" styleClass="mr-2" />
<p-skeleton shape="circle" size="3rem" styleClass="mr-2" />
<p-skeleton shape="circle" size="4rem" styleClass="mr-2" />
<p-skeleton shape="circle" size="5rem" />
Sample Card implementation using different Skeleton components and PrimeFlex CSS utilities.
<div class="border-round border-1 surface-border p-4 surface-card">
<div class="flex mb-3">
<p-skeleton shape="circle" size="4rem" styleClass="mr-2" />
<div>
<p-skeleton width="10rem" styleClass="mb-2" />
<p-skeleton width="5rem" styleClass="mb-2" />
<p-skeleton height=".5rem" />
</div>
</div>
<p-skeleton width="100%" height="150px" />
<div class="flex justify-content-between mt-3">
<p-skeleton width="4rem" height="2rem" />
<p-skeleton width="4rem" height="2rem" />
</div>
</div>
Sample List implementation using different Skeleton components and PrimeFlex CSS utilities.
<div class="border-round border-1 surface-border p-4 surface-card">
<ul class="m-0 p-0 list-none">
<li class="mb-3">
<div class="flex">
<p-skeleton shape="circle" size="4rem" styleClass="mr-2" />
<div style="flex: 1">
<p-skeleton width="100%" styleClass="mb-2" />
<p-skeleton width="75%" />
</div>
</div>
</li>
<li class="mb-3">
<div class="flex">
<p-skeleton shape="circle" size="4rem" styleClass="mr-2" />
<div style="flex: 1">
<p-skeleton width="100%" styleClass="mb-2" />
<p-skeleton width="75%" />
</div>
</div>
</li>
<li class="mb-3">
<div class="flex">
<p-skeleton shape="circle" size="4rem" styleClass="mr-2" />
<div style="flex: 1">
<p-skeleton width="100%" styleClass="mb-2" />
<p-skeleton width="75%" />
</div>
</div>
</li>
<li>
<div class="flex">
<p-skeleton shape="circle" size="4rem" styleClass="mr-2" />
<div style="flex: 1">
<p-skeleton width="100%" styleClass="mb-2" />
<p-skeleton width="75%" />
</div>
</div>
</li>
</ul>
</div>
Sample DataTable implementation using different Skeleton components and PrimeFlex CSS utilities.
Code | Name | Category | Quantity |
---|---|---|---|
<p-table [value]="products" [tableStyle]="{ 'min-width': '50rem' }">
<ng-template pTemplate="header">
<tr>
<th>Code</th>
<th>Name</th>
<th>Category</th>
<th>Quantity</th>
</tr>
</ng-template>
<ng-template pTemplate="body" let-product>
<tr>
<td><p-skeleton /></td>
<td><p-skeleton /></td>
<td><p-skeleton /></td>
<td><p-skeleton /></td>
</tr>
</ng-template>
</p-table>
Following is the list of structural style classes, for theming classes visit theming page.
Name | Element |
---|---|
p-skeleton | Container element. |
p-skeleton-circle | Container element of a determinate progressbar. |
p-skeleton-animation-none | Container element of an indeterminate progressbar. |
Skeleton uses aria-hidden as "true" so that it gets ignored by screen readers, any valid attribute is passed to the root element so you may customize it further if required. If multiple skeletons are grouped inside a container, you may use aria-busy on the container element as well to indicate the loading process.
Component does not include any interactive elements.
API defines helper props, events and others for the PrimeNG Skeleton module.
Skeleton is a placeholder to display instead of the actual content.
Defines the input properties of the component.