样式布局优化

This commit is contained in:
结发受长生
2018-06-29 16:39:12 +08:00
parent 8757f4604a
commit fffaf2d9d6
8 changed files with 34 additions and 20 deletions
@@ -375,4 +375,16 @@
animation-duration: .8s;
animation-fill-mode: both;
animation-name: smallleftOut;
}
// 头像旋转动画
@keyframes profilepic {
0% {
transform: rotate(360deg);
}
100% {
transform: rotate(0deg);
}
}
%picRotate {
animation: profilepic 5s linear infinite;
}