The Animate Namespace

A small and powerful animation library.

Summary
The Animate NamespaceA small and powerful animation library.
Version1.0
AnimateThese functions are bound to elements.

Version

1.0

License

Requires

Flow.js.  Dom.js.

Animate

These functions are bound to elements.

Parameters

nodefoo
fromfoo
tofoo
tweenfoo
hidefoo
durationfoo
addEventListenerfoo
startfoo
stopfoo

Example

var foo = document.getElementById("foo");
var ani = Flow.Animate({
    node : foo,
    from : {
        height : 10,
        width : 10
    },
    to : {
        height : 200,
        width : 200
    },
    tween : "Expo.inout"
}, 1).start();