Skip to content

Instantly share code, notes, and snippets.

@marcelo-ribeiro
Created March 15, 2018 20:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcelo-ribeiro/5d752a191d9b04faf36a7c1e0522be0a to your computer and use it in GitHub Desktop.
Save marcelo-ribeiro/5d752a191d9b04faf36a7c1e0522be0a to your computer and use it in GitHub Desktop.
Material Design Ease Timing Functions Variables
// TIMING FUNCTIONS
$ease: cubic-bezier(0.4, 0, 0.2, 1);
$ease-in: cubic-bezier(0.4, 0.0, 1, 1);
$ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
$ease-in-out: cubic-bezier(0.4, 0.0, 0.6, 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment