Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/swashcap/jquery-canvas-animation
Easy canvas image sequence animation wrapped in a jQuery plugin.
https://github.com/swashcap/jquery-canvas-animation
Last synced: 5 days ago
JSON representation
Easy canvas image sequence animation wrapped in a jQuery plugin.
- Host: GitHub
- URL: https://github.com/swashcap/jquery-canvas-animation
- Owner: swashcap
- License: mit
- Created: 2015-04-03T23:32:52.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-04-15T20:14:34.000Z (over 9 years ago)
- Last Synced: 2023-04-01T03:29:00.514Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 145 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# jQuery Canvas Animation
_Easy canvas image sequence animation wrapped in a jQuery plugin._
## Plugin Use
Use the plugin like so:
```js
$('#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,
});
```