Animation Styles
ts
interface Animation {
duration?: CSSProperties['animationDuration']
delay?: CSSProperties['animationDelay']
}
duration
- Type:
CSSProperties['animationDuration']
- Default:
1s
- Description: Specifies the duration of the animation.
delay
- Type:
CSSProperties['animationDelay']
- Default:
0.1s
- Description: Specifies the delay before starting the animation.