You can customize skeleton control in the below ways.
You can customize the style of a Skeleton control by using cssClass
. The appearance of JavaScript Skeleton can be customized by changing the wave color, background color, width, and height. For detailed information, refer styles.css
file below.
import { Skeleton } from '@syncfusion/ej2-notifications';
// Initialize Skeleton control
let circle: Skeleton = new Skeleton({
shape: 'Circle',
width: "60px",
cssClass: 'e-customize'
});
// Render initialized Skeleton
circle.appendTo('#circleSkeleton');
<!DOCTYPE html>
<html lang="en">
<head>
<title>EJ2 Skeleton</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Typescript UI Controls" />
<meta name="author" content="Syncfusion" />
<link href="//cdn.syncfusion.com/ej2/21.2.3/ej2-base/styles/material.css" rel="stylesheet" />
<link href="//cdn.syncfusion.com/ej2/21.2.3/ej2-notifications/styles/material.css" rel="stylesheet" />
<link href="styles.css" rel="stylesheet" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.38/system.js"></script>
<script src="systemjs.config.js"></script>
</head>
<body>
<div id='loader'>LOADING....</div>
<div id='container'>
<div style="position:relative;min-height:310px;border:1px solid; padding:20px;">
<div id="circleSkeleton"></div>
</div>
</div>
</body>
</html>
#container {
visibility: hidden;
}
#loader {
color: #008cff;
height: 40px;
left: 45%;
position: absolute;
top: 45%;
width: 30%;
}
.e-customize.e-skeleton.e-shimmer-wave::after{
background-image: linear-gradient(90deg, transparent calc(50% - 100px),
rgb(30 128 234 / 50%) 50%,
transparent calc(50% + 100px));
}
.e-customize.e-skeleton.e-skeleton-circle{
background-color: #a8c1f2;
}
You can use the visible
property which defines the visible state of Skeleton.
import { Skeleton } from '@syncfusion/ej2-notifications';
// Initialize Skeleton control in hidden state
let circle: Skeleton = new Skeleton({
shape: 'Circle',
width: "60px",
visible: false
});
// Render initialized Skeleton
circle.appendTo('#circleSkeleton');