Skip to content

Instantly share code, notes, and snippets.

@yukulele
Created December 18, 2012 09:12
Show Gist options
  • Save yukulele/4326488 to your computer and use it in GitHub Desktop.
Save yukulele/4326488 to your computer and use it in GitHub Desktop.
transition bounce
/* 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;
}
// alert('Hello world!');
{"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