Created
June 4, 2013 00:39
-
-
Save githiro/5702722 to your computer and use it in GitHub Desktop.
CSS: transition cubic-bezier set
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-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); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For considering cubic-bezier parameter, I'm using "CSS cubic-bezier Builder": http://www.roblaplaca.com/examples/bezierBuilder/