Animations
Animation Duration
The Animation Duration property defines how long the animation lasts.
Animation Delay
The Animation Delay property defines how long the transition will be paused before starting. The animation is only delayed on its first iteration.
Animation Styles
The animation Styles property allows you to add a style to your animation such as: ease, ease in, ease out, ease in out, linear, hue rotate, step start, step end, ease in sine, ease out sine, ease in out sine, ease in quad, ease out quad, ease in out quad.
Animation Name
The Animation Name property defines which animation keyframes to use.
The Animation keyframes have to be defined in Custom CSS.
Animation Iteration
The Animation Iteration property defines how many times the animation is played.
Animation Direction
The Animation Direction property defines which direction the animation is played, such as normal, reverse, alternate, alternate-reverse.
Normal Starts playing the animation at the beginning. The animation is played forwards. If there is an animation loop, all properties are reset.
Reverse Starts playing the animation at the end. The animation is played backwards. If there is an animation loop, all properties are reset to the end properties.
Alternate Starts playing the animation at the beginning. If there is an animation loop, the properties are not reset.
Alternate-reverse Starts playing the animation at the end. If there is an animation loop, the animation is played in reverse.
Animation Fill Mode
The Animation Fill Mode property allows you to specify at what point in the animation the effects are visible (before or after). The fill mode allows you to tell the browser if the animation's styles should also be applied outside of the animation. They can be: none, forwards, backwards, both.
None None of the animations effects apply to the default style: the element is set to its default state before the animation starts, and returns to that default state after the animation ends.
Forwards The last styles from the end of the animation are kept on the element afterwards.
Backwards The styles of the animation will be applied to the element before the animation starts.
Both The styles are applied to the element before and after the animation plays.
Last updated