Animation.seekAnimationsSeek a set of animations to a particular time within each animation.
| Name | Type | Description |
|---|---|---|
animations | array | List of animation ids to seek. |
currentTime | number | Set the current time of each animation. |
{
"id": 1,
"method": "Animation.seekAnimations",
"params": {
"animations": [],
"currentTime": 1.0
}
}
{
"id": 1,
"result": {}
}
const result = await send('Animation.seekAnimations', {"animations": [], "currentTime": 1.0});
console.log(result);