Animation.cancel()
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since March 2020.
io error: No such file or directory (os error 2) (/home/runner/work/yari/yari/mdn/translated-content/files/es/web/api/web_animations_api/index.md)
El método cancel()
de la Web Animations API de la interfaz Animation
borra todos los KeyframeEffect
causados por esta animación y aborta su reproducción.
Nota:
Cuando se cancela una animación, su startTime
y su currentTime
se establecen en null
.
Sintaxis
Animation.cancel();
Parámetros
Ningun.
Valor devuelto
Ningun.
Excepciones
Este método no arroja excepciones directamente; sin embargo, si la animación playState
no está "idle"
"inactiva" cuando se cancela, el current finished promise se rechaza con un DOMException
llamado AbortError
.
Especificaciones
Specification |
---|
Web Animations # dom-animation-cancel |
Compatibilidad con navegadores
BCD tables only load in the browser
Ver también
- Web Animations API
KeyframeEffect
Animation
Animation.playState
Animation.finished
devuelve la promesa que esta acción rechazará si la animación deplayState
no está"idle"
("inactiva") .