Created
December 18, 2012 09:12
-
-
Save yukulele/4326488 to your computer and use it in GitHub Desktop.
transition bounce
This file contains hidden or 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
/* transition bounce */ | |
div{ | |
width:50px; | |
height:50px; | |
background-color:#777; | |
position:absolute; | |
left:50px; | |
margin-left:50px; | |
transition: | |
margin-left .8s cubic-bezier(1,1.87,0,1.64), | |
left .8s cubic-bezier(.49,.86,.66,.14) | |
} | |
html:hover div{ | |
left:150px; | |
margin-left:150px; | |
} |
This file contains hidden or 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
<div></div> |
This file contains hidden or 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
// alert('Hello world!'); |
This file contains hidden or 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
{"view":"split-vertical","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment