Skip to content

Instantly share code, notes, and snippets.

@arbalest
Last active August 29, 2015 14:08
Show Gist options
  • Save arbalest/2760d2e16b1ce65f0299 to your computer and use it in GitHub Desktop.
Save arbalest/2760d2e16b1ce65f0299 to your computer and use it in GitHub Desktop.
Quick Snap CSS Cubic Bezier Animation Timing Params
.quickSnap {
-webkit-transition-timing-function: cubic-bezier(0.060, 0.975, 0.195, 0.985);
-moz-transition-timing-function: cubic-bezier(0.060, 0.975, 0.195, 0.985);
-o-transition-timing-function: cubic-bezier(0.060, 0.975, 0.195, 0.985);
transition-timing-function: cubic-bezier(0.060, 0.975, 0.195, 0.985); /* custom */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment