Created
March 11, 2016 01:47
-
-
Save MuratOrs/fa81328ea90677e83df5 to your computer and use it in GitHub Desktop.
Вращение логотипа
This file contains 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
.logo img{ | |
margin-left: 5px; | |
-webkit-transition:-webkit-transform .9s; | |
-moz-transition:-moz-transform .9s; | |
-o-transition:-o-transform .9s; | |
-ms-transition:-ms-transform .9s; | |
transition:transform .9s; | |
} | |
.logo img:hover{ | |
-moz-transform: rotate(360deg); | |
-webkit-transform: rotate(360deg); | |
-o-transform: rotate(360deg); | |
-ms-transform: rotate(360deg); | |
transform: rotate(360deg)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment