Path: blob/main/files/en-us/web/api/animation/pause/index.md
6532 views
------{{ APIRef("Web Animations") }}
The pause() method of the Web Animations API's {{domxref("Animation")}} interface suspends playback of the animation.
Syntax
Parameters
None.
Return value
None.
Exceptions
InvalidStateError{{domxref("DOMException")}}: Thrown if the animation's {{domxref("Animation.currentTime", "currentTime")}} is
unresolved(perhaps it hasn't started playing yet), and the end time of the animation is positive infinity.
Example
Animation.pause() is used many times in the Alice in Web Animations API Land Growing/Shrinking Alice Game, largely because animations created with the {{domxref("Element.animate()")}} method immediately start playing and must be paused manually if you want to avoid that:
Additionally, when resetting:
Specifications
{{Specifications}}
Browser compatibility
{{Compat}}
See also
{{domxref("Animation")}} for other methods and properties you can use to control web page animation.
{{domxref("Animation.pause()")}} to pause an animation.
{{domxref("Animation.reverse()")}} to play an animation backwards.
{{domxref("Animation.finish()")}} to finish an animation.
{{domxref("Animation.cancel()")}} to cancel an animation.