Skip to content

Instantly share code, notes, and snippets.

View Mosquid's full-sized avatar

Dmitry Mosquid Mosquid

View GitHub Profile
@narirou
narirou / easings.js
Last active January 25, 2019 12:57
Cubic-Bezier Easing Collections for Velocity.js
module.exports = {
easeIn: 'ease-in',
easeOut: 'ease-out',
easeInOut: 'ease-in-out',
snap: [0.000, 1.000, 0.500, 1.000],
linear: [0.250, 0.250, 0.750, 0.750],
easeInQuad: [0.550, 0.085, 0.680, 0.530],
easeInCubic: [0.550, 0.055, 0.675, 0.190],
easeInQuart: [0.895, 0.030, 0.685, 0.220],
easeInQuint: [0.755, 0.050, 0.855, 0.060],