20

Can you point me to a good Javascript sprite animation library using the HTML Canvas tag?

A few Google searches only turned up some non-canvas projects. I am looking for something clean and simple.

Thanks.

Devon
  • 5,786
  • 5
  • 38
  • 46
  • 1
    Take a look at this comparison table — https://docs.google.com/spreadsheet/ccc?key=0Aqj_mVmuz3Y8dHNhUVFDYlRaaXlyX0xYSTVnalV5ZlE#gid=0 – kangax Dec 20 '12 at 23:45

5 Answers5

9

Processing is a great visualization / animation framework, who has been recently ported to JavaScript: http://ejohn.org/blog/processingjs/.

Hope that helps :)

Seb
  • 24,920
  • 5
  • 67
  • 85
5

There is the cake toolkit as well, although it does provide different functionality (more closely sprite oriented) than processing.js (see @SebaGR's answer).

Unfortunately i don't think either of these libraries really constitutes a sprite library in a useful/complete way.

olliej
  • 35,755
  • 9
  • 58
  • 55
3

you could look at create.js... it uses sprite sheets and is developed for the canvas tag.

Joel Brown
  • 31
  • 1
0

Here is a good list of some javascript game engines:

http://www.reddit.com/r/javascript/comments/f094j/list_of_js_game_engines_community_effort/

Devon
  • 5,786
  • 5
  • 38
  • 46
0

I think this can be better: http://www.c3dl.org/

Hafiz
  • 4,187
  • 12
  • 58
  • 111