Having trouble getting help?
Contact Support
Contact Support
Animation in React Stepper component
5 Jan 20244 minutes to read
The Stepper progress state can be animated, smoothly transitioning from one step to another. You can customize the animation’s duration
and delay
by using the animation property.
You can disable the animation by setting the enable property to false
. By default, the value is true
.
Fields | Type | Description |
---|---|---|
duration | number |
Specifies the duration of the animated transition for each step. The default value is 2000 milliseconds. |
delay | number |
Specifies the delay to initiate the animated transition for each step in milliseconds. The default value is 0 . |
The example demonstrates the animation duration
and delay
settings for the Stepper.
import * as React from "react";
import * as ReactDom from "react-dom";
import { StepperComponent, StepsDirective, StepDirective } from '@syncfusion/ej2-react-navigations';
function App() {
return (
<div className="stepper-animation">
<StepperComponent animation={{ enable: true, duration: 2000, delay: 500 }}>
<StepsDirective>
<StepDirective />
<StepDirective />
<StepDirective />
<StepDirective />
</StepsDirective>
</StepperComponent>
</div>
);
}
export default App;
ReactDom.render(<App />, document.getElementById("element"));
import * as React from "react";
import * as ReactDom from "react-dom";
import { StepperComponent, StepsDirective, StepDirective } from '@syncfusion/ej2-react-navigations';
function App() {
return (
<div className="stepper-animation">
<StepperComponent animation={{ enable: true, duration: 2000, delay: 500 }}>
<StepsDirective>
<StepDirective />
<StepDirective />
<StepDirective />
<StepDirective />
</StepsDirective>
</StepperComponent>
</div>
);
}
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%;
}