| Package | com.greensock.easing |
| Class | public final class Back |
| Inheritance | Back Object |
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 2012, 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.
| Property | Defined 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 | ||
| easeIn | property |
public static var easeIn:BackInEases in with an overshoot, initially dipping below the starting value before accelerating towards the end.
| easeInOut | property |
public static var easeInOut:BackInOutEases in and out with an overshoot, initially dipping below the starting value before accelerating towards the end, overshooting it and easing out.
| easeOut | property |
public static var easeOut:BackOutEases out with an overshoot.