Created
October 31, 2012 10:21
-
-
Save choyan/3986288 to your computer and use it in GitHub Desktop.
A CodePen by choyan. TEsting Transition
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="none"> | |
choyan | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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