eases-cdn

easing equations available as CDN from unpkg.com/eases-cdn/

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
eases-cdn
101.0.36 years ago6 years agoMinified + gzip package size for eases-cdn in KB

Readme

eases
Available as CDN from https://unpkg.com/eases-cdn/
stable
This is a grab-bag of Robert Penner's easing equations, most of the code from glsl-easings.
// import all eases
import eases from 'eases-cdn'

// import only the single function
const { quadIn } from 'eases-cdn'

Graph

You can see the easings graph here https://codepen.io/kunukn/full/mpVJOm/

Usage

All easing functions only remap a time value, and all have the same signature.

``v = ease(t)``

Where t is typically a value between 0 and 1, and it returns a new float that has been eased.

License

MIT, see LICENSE.md for details.