Pageworks / papertrain

Papertrain: a Craft CMS 3 framework
http://download.papertrain.io
MIT License
5 stars 2 forks source link

Easing Object #77

Closed codewithkyle closed 5 years ago

codewithkyle commented 5 years ago

Add this easing object to env.ts so we can easily use it when working with animejs

const easing = {
    ease: [0.4, 0.0, 0.2, 1],
    in: [0.0, 0.0, 0.2, 1],
    out: [0.4, 0.0, 1, 1],
    sharp: [0.4, 0.0, 0.6, 1]
}