Animation.id

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)

La propiedad Animation.id de la Web Animations API devuelve o establece una cadena(string) utilizado para identificar la animación.

Sintaxis

js
var animationsId = Animation.id;

Animation.id = newIdString;

Valor

Un DOMString que se puede usar para identificar la animación, o null si la animación no tiene id.

Ejemplos

En el ejemplo Follow the White Rabbit, puedes asignar a rabbitDownAnimation un id de esta manera:

js
rabbitDownAnimation.effect.id = "rabbitGo";

Especificaciones

Specification
Web Animations
# dom-animation-id

Compatibilidad con navegadores

BCD tables only load in the browser

Ver también