Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 411 Bytes

README.md

File metadata and controls

21 lines (17 loc) · 411 Bytes

jQuery Canvas Animation

Easy canvas image sequence animation wrapped in a jQuery plugin.

Plugin Use

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,
});