Easy canvas image sequence animation wrapped in a jQuery plugin.
Use the plugin like so:
$('#my-canvas').canvasAnimation({
frameInterval: 1000 / 60,
images: [
'/path/to/image-001.jpg',
'/path/to/image-002.jpg',
'/path/to/image-003.jpg',
// ...
'/path/to/image-100.jpg'
],
imageRatio: 640 / 320,
});