Javascript Animation Framework

847 Views Asked by At

I am looking for a javascript animation framework. I have found some:

http://www.pixijs.com/

http://phaser.io/

http://paperjs.org/

These all are good.

But I would like a GUI based animation creater framework, so that I can create translation, scale and frame animations. That will allow me easily create basic animations without having to write much code.

Something like cocos studio for cocos2d.

If you guys, know any such framework, please let me know. Thanks.

3

There are 3 best solutions below

0
On

I wrote a very simple library based on request animation frame that can basically animate anything you want as it only returns number values over specified time according to the specified easing.

https://github.com/alanbo/animate.js

1
On

If you need some animations libraries, here are some good ones:

  1. Greensock: https://greensock.com/
  2. Velocity.js: http://julian.com/research/velocity/

If you want to create animations in a GUI, things to consider:

  1. Adobe Edge (paid): https://creative.adobe.com/products/animate
  2. Bouncejs: http://bouncejs.com/
  3. CSS Animate: http://cssanimate.com/
0
On

I have created one, which is very simple and small

https://github.com/allenhwkim/jsanimation

Usage

import {slideInRight} from 'jsanimation';
slideInRight(el);