Skip to content

Instantly share code, notes, and snippets.

@secondfret
Created December 29, 2011 18:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save secondfret/1535314 to your computer and use it in GitHub Desktop.
Save secondfret/1535314 to your computer and use it in GitHub Desktop.
Design Shack CSS Mouse In/Out Example 1
/**
* Design Shack CSS Mouse In/Out Example 1
*/
#loremdiv {
margin: 100px;
height: 200px; width: 200px;
background: black;
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
-ms-transition: all 1s ease;
transition: all 1s ease;
}
#loremdiv:hover {
background: gray;
-webkit-transform: rotate(1080deg);
-moz-transform: rotate(1080deg);
-o-transform: rotate(1080deg);
-ms-transform: rotate(1080deg);
transform: rotate(1080deg);
-webkit-border-radius: 100px;
-moz-border-radius: 100px;
border-radius: 100px;
}
<div id="loremdiv">
</div>
{"view":"split-vertical","prefixfree":"1","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment