Packagecom.greensock.easing
Classpublic final class Expo
InheritanceExpo Inheritance Object

Eases in a strong fashion either at the beginning (easeIn), the end (easeOut), or both (easeInOut). Expo is a convenience class that congregates the 3 types of Expo eases (ExpoIn, ExpoOut, and ExpoInOut) as static properties so that they can be referenced using the standard synatax, like Expo.easeIn, Expo.easeOut, and Expo.easeInOut.

Copyright 2013, GreenSock. All rights reserved. This work is subject to the terms in http://www.greensock.com/terms_of_use.html or for Club GreenSock members, the software agreement that was issued with the membership.



Public Properties
 PropertyDefined By
  easeIn : ExpoIn
[static] Eases in a strong fashion starting out slowly and then accelerating.
Expo
  easeInOut : ExpoInOut
[static] Eases in a strong fashion starting out slowly and then accelerating, then decelerating at the end.
Expo
  easeOut : ExpoOut
[static] Eases out in a strong fashion starting out fast and then decelerating.
Expo
Property Detail
easeInproperty
public static var easeIn:ExpoIn

Eases in a strong fashion starting out slowly and then accelerating. Produces an effect similar to the popular "Zeno's paradox" style of scripted easing, where each interval of time decreases the remaining distance by a constant proportion.

easeInOutproperty 
public static var easeInOut:ExpoInOut

Eases in a strong fashion starting out slowly and then accelerating, then decelerating at the end. Produces an effect similar to the popular "Zeno's paradox" style of scripted easing, where each interval of time decreases the remaining distance by a constant proportion.

easeOutproperty 
public static var easeOut:ExpoOut

Eases out in a strong fashion starting out fast and then decelerating. Produces an effect similar to the popular "Zeno's paradox" style of scripted easing, where each interval of time decreases the remaining distance by a constant proportion.