A small and powerful animation library.
| The Animate Namespace | A small and powerful animation library. |
| Version | 1.0 |
| Animate | These functions are bound to elements. |
1.0
Flow.js. Dom.js.
These functions are bound to elements.
| node | foo |
| from | foo |
| to | foo |
| tween | foo |
| hide | foo |
| duration | foo |
| addEventListener | foo |
| start | foo |
| stop | foo |
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();