startTime property

CSSNumberish? get startTime

The Animation.startTime property of the Animation interface is a double-precision floating-point value which indicates the scheduled time when an animation's playback should begin.

An animation's start time is the time value of its DocumentTimeline when its target KeyframeEffect is scheduled to begin playback. An animation's start time is initially unresolved (meaning that it's null because it has no value).

Implementation

external CSSNumberish? get startTime;
set startTime (CSSNumberish? value)

Implementation

external set startTime(CSSNumberish? value);