← Back to Animation domain

Animation.releaseAnimations

Releases a set of animations to no longer be manipulated.

Domain: Animation experimental

Parameters

NameTypeDescription
animationsarrayList of animation ids to seek.

Example Request

{
  "id": 1,
  "method": "Animation.releaseAnimations",
  "params": {
    "animations": []
  }
}

Example Response

{
  "id": 1,
  "result": {}
}

Usage in Node.js

const result = await send('Animation.releaseAnimations', {"animations": []});
console.log(result);