🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

jQuery plugin for simple but powerful sprite based animations and panning.Motio is called on an element representing animation container, where animation is delivered as a CSS background image.In sprite based animations, container should have the dimensions of one sprite frame. E.g, if you have 10 frames in a horizontal sprite that is 1000 x 100 pixels big, the container should be 100 x 100 pixels big.

Animation Plugins

Documentation

Motio

Small JavaScript library for simple but powerful sprite based animations and panning.

Motio takes an element and animates its background position to create an animation effect. All is super optimized for speed and chained to the requestAnimationFrame, with a polyfill for older browsers without it.

That being said, animating the element background is not the fastest possible way how to do this (canvas solutions are a lot faster), but it is sure as hell the most simple one, and compatible with everything from IE6 and up.

Dependencies

Motio has no dependencies, but there is an optional Motio jQuery plugin extension available.

Compatibility

Works everywhere.

Usage

Sprite animation mode:

var element = document.querySelector('#sprite'); var sprite = new Motio(element, { 	fps: 10, 	frames: 14 }); sprite.play();   // start animation sprite.pause();  // pause animation sprite.toggle(); // toggle play/pause sprite.toStart(); // animate to 1st frame and stop sprite.toEnd();   // animate to last frame and stop sprite.to(10);    // animate to 11th frame and stop

Seamless background panning mode:

var element = document.querySelector('#panning'); var panning = new Motio(element, { 	fps: 30, // Frames per second. More fps = higher CPU load. 	speedX: -30 // Negative horizontal speed = panning to left. }); panning.play();    // start animation panning.pause();   // pause animation panning.toggle();  // toggle play/pause

Download

Latest stable release:

jQuery plugin version:

When isolating issues on jsfiddle, you can use this URL:

Documentation

Can be found in the docs directory.

Contributing

Please, read the Contributing Guidelines for this project.


You May Also Like