0

Are there (or can someone recommend) any minimalistic JavaScript based libraries for sprite(s) manipulation? Preferably DOM oriented.

Vaillancourt
  • 16,325
  • 17
  • 55
  • 61
yojimbo87
  • 101
  • 1
  • 4
  • 8

1 Answers1

1

EaselJS does sprite animation with HTML Canvas if that is something you could use. It's not really minimalistic, but does a really good job of handling sprite sheets.

The source is split across multiple files, so with a bit of work you could probably pull apart just the bits to do sprite animation (BitmapSequence).

igkuk7
  • 111
  • 1
  • 1