0.1.7 • Published 7 years ago

animationjs v0.1.7

Weekly downloads
19
License
-
Repository
github
Last release
7 years ago

animationjs

generate a animation.

usage

var animation = new lib.animation(
  1000,                   // duration(ms)
  lib.cubicbezier.ease,   // timingFunction
  function(i1, i2) {      // frame
    console.log(i1, i2);
  }
);

animation.play().then(function() {
  console.log('end');
});