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.

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