Skip to content

Instantly share code, notes, and snippets.

@valhead
Created October 2, 2012 19:49
Show Gist options
  • Save valhead/3822862 to your computer and use it in GitHub Desktop.
Save valhead/3822862 to your computer and use it in GitHub Desktop.
Transition fun!
/* Transition fun! */
div {
width:100px;
height:40px;
top:50px;
left:50px;
background:purple;
position: absolute;
transition-property:all;
transition-duration:2s;
transition-timing-function:ease-in-out;
transform-origin: 0% 0%;
}
div:hover {
transform: rotate(45deg);
}
t
<!-- content to be placed inside <body>…</body> -->
<div></div>
{"view":"split","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