Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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