AnimationOptions¶
Interface AnimationOptions
interface AnimationOptions {
delay?: number;
duration?: number;
iterationCount?: number;
playbackRate?: number;
playState?: AnimationPlayState;
time?: number;
timingFunction?: AnimationTimingFunction;
}
delay?: number;
duration?: number;
iterationCount?: number;
playbackRate?: number;
playState?: AnimationPlayState;
time?: number;
timingFunction?: AnimationTimingFunction;
}
Index
Properties
Optional
delay
delay?: number
The initial delay of the animation sequence.
Optional
duration
duration?: number
The total duration of the animation sequence in milliseconds.
Optional
iteration Count
iterationCount?: number
The number of iterations of the animation sequence.
Optional
playback Rate
playbackRate?: number
The playback rate of the animation sequence.
Optional
play State
The play state of the animation sequence.
Optional
time
time?: number
The current time of the animation sequence between 0 and the total duration.
Optional
timing Function
The timing function used for the interpolation.
The AnimationOptions provide additional options of a whole animation sequence.
See
AnimationAPI