Skip to content

Instantly share code, notes, and snippets.

@yukulele
Created December 18, 2012 08:56
Show Gist options
  • Save yukulele/4326304 to your computer and use it in GitHub Desktop.
Save yukulele/4326304 to your computer and use it in GitHub Desktop.
transition elastic
/* transition elastic */
div{
width:50px;
height:50px;
background-color:#777;
position:absolute;
left:50px;
margin-left:50px;
transition:
margin-left .8s cubic-bezier(.35,2.7,0.65,-.5),
left .8s cubic-bezier(0.2,2,0.9,1.2)
}
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