Search
EasingType Enumeration
See Also
 





Specifies the easing applied to an animation.

Namespace: MindFusion.Animations
Package: Enum.js

 Syntax

JavaScript  Copy Code

// enum
EasingType = {}

 Members

  Member name Description

EaseIn

Follows the animation function associated with the Animation.

EaseInOut

Uses EaseIn for the first half the the Animation's duration and EaseOut for the second half.

EaseOut

Inverses the animation function associated with the Animation.

EaseOutIn

Uses EaseOut for the first half the the Animation's duration and EaseIn for the second half.

 Remarks

Members of this enumeration can be assigned to the easingType property of Animation.

 See Also