EvAnimationTimeSpan Interface
The EvAnimationTimeSpan TS interface defines a blueprint of a JS object that specifies a span of time on the animation timeline.
Properties
An EvAnimationTimeSpan object has the following properties:
end: number;A number, the end position of a given time span on the animation timeline. The actual value depends on the positioning method given in the
positionTypeproperty.positionType: EvAnimationPositionType;A member of the
EvAnimationPositionTypeenumeration, a method to specify the position of the given time span on the animation timeline.start: number;A number, the start position of the given time span on the animation timeline. The actual value depends on the positioning method given in the
positionTypeproperty.
Examples
TS
{
end: 7,
type: EvAnimationPositionType.Time,
start: 5
}
JS
{
end: 7,
type: "time",
start: 5
}
25 April 2025