Last active
August 26, 2018 04:48
-
-
Save youngjuning/f460e133ff5e567c7286bc37f1f32b8a to your computer and use it in GitHub Desktop.
旋转360度的特效
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
.focus_logo{ | |
-webkit-transition: 0.6s; | |
-webkit-transition: -webkit-transform 0.6s ease-out; | |
transition: transform 0.6s ease-out; | |
-moz-transition: -moz-transform 0.6s ease-out; | |
} | |
.focus_logo:hover{ | |
transform: rotateZ(360deg); | |
-webkit-transform: rotateZ(360deg); | |
-moz-transform: rotateZ(360deg); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment