Skip to content

Instantly share code, notes, and snippets.

@youngjuning
Last active August 26, 2018 04:48
Show Gist options
  • Save youngjuning/f460e133ff5e567c7286bc37f1f32b8a to your computer and use it in GitHub Desktop.
Save youngjuning/f460e133ff5e567c7286bc37f1f32b8a to your computer and use it in GitHub Desktop.
旋转360度的特效
.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