Skip to content

Instantly share code, notes, and snippets.

@choyan
Created October 31, 2012 10:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save choyan/3986288 to your computer and use it in GitHub Desktop.
Save choyan/3986288 to your computer and use it in GitHub Desktop.
A CodePen by choyan. TEsting Transition
<div class="none">
choyan
</div>
.none {
height: 300px;
width:300px;
background-color: #e3e3e3;
margin: auto;
border-radius: 50%;
-moz-transition: 1.5s;
-webkit-transition: 1.5s;
line-height: 300px;
text-align: center;
}
.none:hover {
-moz-transform: scale(0.5);
-moz-transform: rotate(90);
-webkit-transform: scale(0.5);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment