Skip to content

Instantly share code, notes, and snippets.

@valhead
Created May 16, 2012 14:38
Show Gist options
  • Save valhead/2710842 to your computer and use it in GitHub Desktop.
Save valhead/2710842 to your computer and use it in GitHub Desktop.
Basic transition
/**
* Basic transition
*/
body {
background:#333;
}
div {
width:200px;
height:100px;
background:#ff00ff;
margin:10em 4em;
-webkit-transition: all 1s;
}
div:hover {
transform: translate(50px,0px);
}
<!-- content to be placed inside <body>…</body> -->
<div></div>
{"view":"split-vertical","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment