mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
2.0 KiB
2.0 KiB
Home > puppeteer > Protocol > Animation > AnimationEffect
Protocol.Animation.AnimationEffect interface
AnimationEffect instance
Signature:
export interface AnimationEffect
Properties
| Property | Type | Description |
|---|---|---|
| backendNodeId | DOM.BackendNodeId | AnimationEffect's target node. |
| delay | number | AnimationEffect's delay. |
| direction | string | AnimationEffect's playback direction. |
| duration | number | AnimationEffect's iteration duration. |
| easing | string | AnimationEffect's timing function. |
| endDelay | number | AnimationEffect's end delay. |
| fill | string | AnimationEffect's fill mode. |
| iterations | number | AnimationEffect's iterations. |
| iterationStart | number | AnimationEffect's iteration start. |
| keyframesRule | KeyframesRule | AnimationEffect's keyframes. |