CSS property: -webkit-animation-play-state

Description

Determines whether the animation is running or paused.

A running animation can be paused by setting this property to paused. Set this property to running to continue running a paused animation. A paused animation continues to display the current value of the animation in a static state. When a paused animation is resumed, it restarts from the current value, not from the beginning of the animation.

Syntax

-webkit-animation-play-state: <play_state> [, ...];

Values

<play_state>

The state of an animation.

running (by default)Plays the animation.
pausedPauses the animation.

Versions