Classes
 ClassDescription
 BezierPlugin Animate virtually any property (or properties) along a Bezier (curved) path which you define as an array of points/values that can be interpreted 4 different ways (described as the Bezier's "type", like type:"quadratic"): "thru" (the default) - the plugin figures out how to draw the Bezier naturally through the supplied values using a proprietary algorithm.
 ColorPropsPlugin Tweens any color-related property of any object, like myObject.borderColor from "rgb(255,0,51)" to "rgb(102,204,0)" (and you can define the initial color in almost any format like "#FF00CC" or "rgba(255,0,51,0.5)" or "red" or "#f0c" or 0xFF00CC).
 CSSPlugin With the help of the CSSPlugin, GSAP can animate almost any css-related property of DOM elements including the obvious things like width, height, margins, padding, top, left, and more plus more interesting things like transforms (rotation, scaleX, scaleY, skewX, skewY, x, y, rotationX, and rotationY), colors, opacity, and lots more.
 CSSRulePlugin Allows TweenLite and TweenMax to animate the raw style sheet rules which affect all objects of a particular selector rather than affecting an individual DOM element's style (that's what the CSSPlugin is for).
 EaselPlugin Tweens special EaselJS-related properties like ColorFilter (see http://www.createjs.com/#!/EaselJS for more information about EaselJS).
 RaphaelPlugin Enables TweenLite and TweenMax to animate properties of Raphael JavaScript objects (see http://www.raphaeljs.com/).
 RoundPropsPlugin If you'd like the inbetween values in a tween to always get rounded to the nearest integer, use the roundProps special property.
 ScrollToPlugin Allows TweenLite and TweenMax to animate the scroll position of either the window (like doing window.scrollTo(x, y)) or a <div> DOM element's content (like doing myDiv.scrollTop = y; myDiv.scrollLeft = x;).
 TweenPlugin TweenPlugin is the base class for all TweenLite and TweenMax plugins, but generally isn't used directly.