Animar
NOTE: This is still very much a work in progress (espcially in the documentation department). If you attempt to use this in its current state, you are doing so at your own risk.
Example
var Animar = ; // Custom easing function (Animar only defaults to a linear ease) { t /= d / 2; if t < 1 return c / 2 * t * t + b; t--; return -c / 2 * t * t - 2 - 1 + b;} // Initialize the library (set the default easing function to the one created above)var animar = defaults: easingFunction: quadInOut ; // Get the target from the DOMvar target = document; // Construct an animation chain and start it immediately.animar // Any animation added after this point will start after the previous ones have finished