Animation.setPausedSets the paused state of a set of animations.
| Name | Type | Description |
|---|---|---|
animations | array | Animations to set the pause state of. |
paused | boolean | Paused state to set to. |
{
"id": 1,
"method": "Animation.setPaused",
"params": {
"animations": [],
"paused": true
}
}
{
"id": 1,
"result": {}
}
const result = await send('Animation.setPaused', {"animations": [], "paused": true});
console.log(result);