You are here : cssCSS 3animation-play-state

animation-play-state - CSS 3

The animation-play-state property specifies whether the animation is running 
or paused.Note: Use this property in a JavaScript to pause an animation in the 
middle of a cycle.


Syntax

animation-play-state: paused|running|initial|inherit;


Example

div
	{    -webkit-animation-play-state: paused; /* Chrome, Safari, Opera */   
  
    animation-play-state: paused;
    }


Output / Return Value


Limitations


Alternatives / See Also


Reference