1.1.2 • Published 10 years ago
jquery-johnnys-path v1.1.2
jquery-johnnys-path

A small jQuery plugin that animates an absolute positioned element according to a path you give.
:cloud: Installation
$ npm i --save jquery-johnnys-path:clipboard: Example
var options = {
// Animation durations: 500 ms
d: 500
// Animation type
, e: "linear"
};
$("...").johnnysPath(options, [
{ x: 100, y: 0 }
, { x: 100, y: 100 }
, { x: 000, y: 100 }
, { x: 0, y: 0 }
]);:memo: Documentation
johnnysPath(options, points, callback)
A small jQuery plugin that animates an absolute positioned element according to a path you give.
Params
- Object
options: An object containing:d(Number): The duration (default: 400 ms)e(String): The animation type (default: "linear")
- Array
points: An array of objects containing thexandyvalues. - Function
callback: The callback function.
Return
- jQuery The selected elements.
:yum: How to contribute
Have an idea? Found a bug? See how to contribute.