C

WebGLTransition

Encapsulates the values that specify how the visualization of an indicator should be transitioned when entering or leaving the visualization.
Inheritance Hierarchy

Remarks

This class is immutable and provides read-only access to the properties specified in the constructor, only. The class is modelled loosely after the set of CSS transition properties. However, it only offers a limited set of properties, a duration, and an easing function. Transition timing is a single animation cycle with a given duration. An easing function determines how progress is made during the transition.

In most parts of the API, you can depend on automatic conversion and use CSS-like strings where an instance of this class would be required, otherwise.

Members

No filters for this type

Constructors

Creates a new immutable instance with the provided values.

Parameters

properties?: WebGLTransitionProperties
The properties to transition. Defaults to SCALE.
duration?: TimeSpan
The duration of the transition. Defaults to 0.3 seconds.
easing?: WebGLAnimationEasing
The easing to apply. Defaults to LINEAR

Properties

Gets the duration of a the transition.
readonlyfinal

Property Value

The duration of the animation of the transition.
Gets the easing function to apply for the transition.
readonlyfinal

Property Value

The easing function.
Gets the set of properties to transition.
readonlyfinal

Property Value

The properties to animate.

Constants

A transition that has a zero duration.
This transitions immediately with no visible animation.
static