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.
animation-play-state: paused|running|initial|inherit;
div { -webkit-animation-play-state: paused; /* Chrome, Safari, Opera */ animation-play-state: paused; }