如果是RiPro主题,请在后台顶部设置添加自定义CSS。其他主题在对应的CSS样式添加。
代码如下:
/*
头像
*/
.bg-cover {
border: #ececec 1px solid;
}
/*头像旋转*/
.avatar{
-webkit-transition:0.4s;
-webkit-transition:-webkit-transform 0.4s ease-out;
transition:transform 0.4s ease-out;
-moz-transition:-moz-transform 0.4s ease-out;
}
.avatar:hover{
transform:rotateZ(360deg);
-webkit-transform:rotateZ(360deg);
-moz-transform:rotateZ(360deg);
}