Jump to content
GreenSock

Back

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.easeInBack.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)});

Properties

easeIn : BackIn

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

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.

easeOut : BackOut

[static] Eases out with an overshoot.

Copyright 2017, GreenSock. All rights reserved. This work is subject to theterms of useor for Club GreenSock members, the software agreement that was issued with the membership.
×