Skip to content

Instantly share code, notes, and snippets.

View kossnocorp's full-sized avatar
Shipping

Sasha Koss kossnocorp

Shipping
View GitHub Profile
@kossnocorp
kossnocorp / 1_easings.styl
Last active July 12, 2016 04:49 — forked from jamesflorentino/easing.styl
Easings set for Stylus + JSON for preview on http://cubic-bezier.com
// Cubic
ease_in_cubic = cubic-bezier(0.550, 0.055, 0.675, 0.190)
ease_out_cubic = cubic-bezier(0.215, 0.610, 0.355, 1.000)
ease_in_out_cubic = cubic-bezier(0.645, 0.045, 0.355, 1.000)
// Circ
ease_in_circ = cubic-bezier(0.600, 0.040, 0.980, 0.335)
ease_out_circ = cubic-bezier(0.075, 0.820, 0.165, 1.000)
ease_in_out_circ = cubic-bezier(0.785, 0.135, 0.150, 0.860)