eaz
↝ Simple and flexible easing package for smooth animations
Installation:
npm i eaz
Use Predefined Easing Functions
Using predefined easing functions is as simple as referencing a static property of the Easing class.
import { Easing } from 'eaz';
Easing.cubic.in(0.3);
Every Easing object contains an in, out, and inOut method, and more options. Refer to the documentation for theEasing class for more information.
Create Custom Easing Functions
Use eaz's generational methods to create custom easing functions quickly
import { Easing } from 'eaz';
Easing.polynomial(2.5).in(0.3);
Or create entirely custom easing methods from scratch
import { Easing } from 'eaz';
const myEasing = new Easing(t => t ** 2.5);
myEasing.in(0.3);
Easily Generate Demo Images
Generate images to test your easing functions
import { Easing, DemoImage } from '../index';
DemoImage.inOut(Easing.cubic, 'images/cubicInOut.png');
Output:
![images/cubicInOut.png](https://raw.githubusercontent.com/robertmay2003/eaz/master/src/tests/images/cubicInOut.png)