Packagecom.greensock.easing
Classpublic final class Back
InheritanceBack Inheritance Object

Eases with an overshoot either at the beginning (easeIn), the end (easeOut), or both (easeInOut). Back is a convenience class that congregates the 3 types of Back eases (BackIn, BackOut, and BackInOut) as static properties so that they can be referenced using the standard synatax, like Back.easeIn, Back.easeOut, and Back.easeInOut.

You can configure the amount of overshoot using the config() method, like TweenLite.to(obj, 1, {x:100, ease:Back.easeOut.config(3)});

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 : BackIn
[static] Eases in with an overshoot, initially dipping below the starting value before accelerating towards the end.
Back
  easeInOut : BackInOut
[static] Eases in and out with an overshoot, initially dipping below the starting value before accelerating towards the end, overshooting it and easing out.
Back
  easeOut : BackOut
[static] Eases out with an overshoot.
Back
Property Detail
easeInproperty
public static var easeIn:BackIn

Eases in with an overshoot, initially dipping below the starting value before accelerating towards the end.

easeInOutproperty 
public static var easeInOut:BackInOut

Eases in and out with an overshoot, initially dipping below the starting value before accelerating towards the end, overshooting it and easing out.

easeOutproperty 
public static var easeOut:BackOut

Eases out with an overshoot.