Styles in React Skeleton component
23 May 20232 minutes to read
You can customize skeleton control in the below ways.
cssClass
You can customize the style of a Skeleton control by using cssClass
. The appearance of React Skeleton can be customized by changing the wave color, background color, width, and height. For detailed information, refer index.css
file below.
import { SkeletonComponent } from '@syncfusion/ej2-react-notifications';
import * as React from "react";
import * as ReactDOM from 'react-dom';
function App() {
return (<SkeletonComponent shape='Circle' width="60px" cssClass='e-customize'></SkeletonComponent>);
}
export default App;
ReactDOM.render(<App />, document.getElementById('element'));
import { SkeletonComponent } from '@syncfusion/ej2-react-notifications';
import * as React from "react";
import * as ReactDOM from 'react-dom';
function App() {
return (
<SkeletonComponent shape= 'Circle' width= "60px" cssClass='e-customize'></SkeletonComponent>);
}
export default App;
ReactDOM.render(<App />, document.getElementById('element'));
/* Represents the styles for loader */
#loader {
color: #008cff;
height: 40px;
left: 45%;
position: absolute;
top: 45%;
width: 30%;
}
/* Represents the styles for shimmer-wave */
.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));
}
/* Represents the background-color for skeleton-circle */
.e-customize.e-skeleton.e-skeleton-circle{
background-color: #a8c1f2;
}
Visible
You can use the visible
property which defines the visible state of Skeleton.
import { SkeletonComponent } from '@syncfusion/ej2-react-notifications';
import * as React from "react";
function App() {
return (
<SkeletonComponent shape= 'Circle' width= "60px" visible={false}></SkeletonComponent>);
}
export default App;