今天我为大家分享一个B2主题圈子头像旋转特效,其实很简单,把下面的css代码加入子主题style.css文件就可以了。
/*头像旋转*/
.topic-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;
}
.topic-avatar:hover{
transform:rotateZ(360deg);
-webkit-transform:rotateZ(360deg);
-moz-transform:rotateZ(360deg);
}
喜欢的朋友试一下吧。