Skip to content

Instantly share code, notes, and snippets.

View yoSteve's full-sized avatar

Steve Yorke yoSteve

  • Grand Lake, NS
  • 11:18 (UTC -03:00)
View GitHub Profile
@yoSteve
yoSteve / _easing-functions.scss
Last active July 19, 2019 22:22 — forked from robpataki/_easing-functions.scss
Easing function variables for SCSS
// Easing function variables - SEE EXAMPLES: http://easings.net/en#
// SINE
$ease-in-sine: cubic-bezier(0.47, 0, 0.745, 0.715);
$ease-out-sine: cubic-bezier(0.39, 0.575, 0.565, 1);
$ease-in-out-sine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
// QUAD
$ease-in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
$ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);