Skip to content

gdsmith/jquery.easing

Folders and files

NameName
Last commit message
Last commit date
Aug 6, 2020
Aug 6, 2020
Aug 6, 2020
Aug 6, 2020
May 17, 2016
Aug 6, 2020
Aug 6, 2020
Aug 6, 2020
Aug 6, 2020
Aug 6, 2020
Aug 12, 2021
Aug 6, 2020

Repository files navigation

jQuery Easing Plugin

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

For CDN please use CloudFlare https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.4.1/jquery.easing.min.js to help my host. Thank you.

AMD or CommonJS usage

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

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

Building and testing

  • Clone the repo
  • npm install
  • Make changes
  • Test against files in /examples
  • Build minified version with npm run build