Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 667 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 667 Bytes

jQuery Easing Plugin

GitHub license Build Status

What is it? A jQuery plugin from GSGD to give advanced easing options. More info here

AMD or CommonJS usage

// CommonJS
var jQuery = require('jquery');
require('jquery.easing')(jQuery);

// AMD
define(['jquery', 'jquery.easing'], function (jQuery, easing) {
  easing(jQuery)
})