Skip to content

Instantly share code, notes, and snippets.

View youngjuning's full-sized avatar
💭
I may be slow to respond.

紫升 youngjuning

💭
I may be slow to respond.
View GitHub Profile
"*":
_dart:
_firstRun: true
_version: "1.0.1"
"aligner-typescript": {}
"atom-ide-ui":
use:
"atom-ide-busy-signal": "never"
"atom-ide-code-actions": "never"
"atom-ide-code-format": "never"
@youngjuning
youngjuning / rotate360.css
Last active August 26, 2018 04:48
旋转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);