Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marceloxp/imagespriteplay
jQuery Sprite Animator
https://github.com/marceloxp/imagespriteplay
animation javascript jquery jquery-plugin
Last synced: 5 days ago
JSON representation
jQuery Sprite Animator
- Host: GitHub
- URL: https://github.com/marceloxp/imagespriteplay
- Owner: marceloxp
- License: lgpl-3.0
- Created: 2014-09-30T00:45:35.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2018-10-05T15:29:52.000Z (about 6 years ago)
- Last Synced: 2023-12-27T14:20:17.216Z (11 months ago)
- Topics: animation, javascript, jquery, jquery-plugin
- Language: JavaScript
- Homepage:
- Size: 194 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ImageSpritePlay
> jQuery Sprite Animator
## Usage
```php
$(document).ready
(
function()
{
$("#element-1").imageSpritePlay
(
{
image : 'img/fly.png',
frame_count : 4,
velocity : 65,
autoplay : true,
loop : true
}
);
$("#element-2").imageSpritePlay
(
{
image : 'img/dragon.png',
frame_count : 4,
velocity : 250,
autoplay : true,
loop : true,
inlineStyle : false
}
);
}
);
```