Skip to content

Instantly share code, notes, and snippets.

@githiro
Created June 4, 2013 00:39
Show Gist options
  • Save githiro/5702722 to your computer and use it in GitHub Desktop.
Save githiro/5702722 to your computer and use it in GitHub Desktop.
CSS: transition cubic-bezier set
-moz-transition: all .4s cubic-bezier(.70, 0, .60, 1);
-webkit-transition: all .4s cubic-bezier(.70, 0, .60, 1);
-ms-transition: all .4s cubic-bezier(.70, 0, .60, 1);
-o-transition: all .4s cubic-bezier(.70, 0, .60, 1);
transition: all .4s cubic-bezier(.70, 0, .60, 1);
@githiro
Copy link
Author

githiro commented Jun 4, 2013

For considering cubic-bezier parameter, I'm using "CSS cubic-bezier Builder": http://www.roblaplaca.com/examples/bezierBuilder/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment