Package | com.greensock.easing |
Class | public final class Quad |
Inheritance | Quad Object |
easeIn
, easeOut
, and easeInOut
with a power (or strength)
of 1 which is identical to the Power1
ease. The more power, the more
exaggerated the easing effect. Using a numeric approach like Power1 instead of Quad makes experimenting
easier and the code reads more intuitively.
This is one of the eases that is natively accelerated in TweenLite and TweenMax. All of the "Power" eases and their counterparts (Linear (0), Quad (1), Cubic (2), Quart (3), Quint (4), and Strong (4)) are accelerated.
Example usage:
TweenLite.to(obj, 1, {x:100, ease:Quad.easeOut});
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.