Anim8js Versions Save

The ultimate animation library for javascript - animate everything!

v1.1.1

6 years ago

Changes

  • Pass point index & delta from Path.compute through a live point function
anim8.path({
  type: 'point',
  point: function(index, delta) {
    return delta * 10;
  }
});

v1.1.0

6 years ago

Changes

  • deltas are now automatically normalized

Issues

  • Add scale to easing (resolves #11)
  • Add insert to Animator[s] (resolves #17)
  • parseArry should be fixed to parseArray (resolves #18)
  • Add Point Path (resolves #20)
  • Pass for to animation parsing - so if an animation object is provided it can automatically know what factory to use. (resolves #19)
  • Add factory as saveBatch option (resolves #10)

v1.0.6

6 years ago

Changes

  • Fixed isEmpty Logic
  • Added Documentation
  • Fixed Transparent Color

v1.0.5

7 years ago

Changes

  • Added subset path (PathSub or sub)
  • Added quadratic corner path (PathQuadraticPath or quadratic-corner)
  • Added linear path (PathLinear or linear)
  • Added uniform path for moving over another path at a constant velocity (PathUniform or uniform)
  • Added cubic hermite spline path (PathHermite or hermite)
  • Added bezier path (PathBezier or bezier)
  • Added generic parametric path (PathParametric or parametric)
  • Added catmull-rom path (PathCatmullRom or catmull-rom)
  • Added b-spline path (PathBasisSpline or basis-spline)

v1.0.4

7 years ago
  • Bug FIxes
  • Updated README

v1.0.3

7 years ago

v1.0.2

7 years ago
  • Fixed bower references

v1.0.1

7 years ago
  • Exclude src from bower
  • Export Class to anim8.Class

v1.0.0

7 years ago

Initial Release