Javascript动画框架

问题描述 投票:1回答:3

我正在寻找一个javascript动画框架。我发现了一些:

http://www.pixijs.com/

http://phaser.io/

http://paperjs.org/

这一切都很好。

但我想要一个基于GUI的动画创作框架,这样我就可以创建翻译,缩放和框架动画。这样我就可以轻松创建基本动画而无需编写太多代码。

有点像cocos studio的cocos2d。

如果你们知道任何这样的框架,请告诉我。谢谢。

javascript animation jquery-animate cocos2d-js web-animations
3个回答
2
投票

如果你需要一些动画库,这里有一些好的:

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

如果要在GUI中创建动画,需要考虑以下事项:

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

0
投票

我根据请求动画帧编写了一个非常简单的库,它基本上可以动画你想要的任何东西,因为它只根据指定的缓动在指定的时间内返回数​​值。

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


0
投票

我创造了一个,非常简单和小

https://github.com/allenhwkim/jsanimation

用法

import {slideInRight} from 'jsanimation';
slideInRight(el);
© www.soinside.com 2019 - 2024. All rights reserved.