ripro主题作者头像指针旋转动画

一个非常不错的小动画适合RIPRO主题,当移动鼠标指针指向头像时,头像会进行360度旋转,现在免费分享给大家,希望喜欢并收藏本站……

代码如下,可直接复制到网站后台主题css中,也可以复制到文件: \ripro\assets\css\diy.css 中

/** ------ / css样式来源至找黑客云优质源码网 / bbs.5g110.cn / -------- **/
.avatar{padding1px;border1px solid #cfd9e1;width24px;height24px; 
border-radius 100% !important;
-webkit-border-radius 100% !important;
-moz-border-radius100% !important;
box-shadow inset 0 -1px 0 #3333sf;
-webkit-box-shadow inset 0 -1px 0 #3333sf;
-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;
}
.avatarhover{
box-shadow 0 0 10px #fff; rgba(255,255,255,.6), inset 0 0 20px rgba(255,255,255,1);
-webkit-box-shadow 0 0 10px #fff; rgba(255,255,255,.6), inset 0 0 20px rgba(255,255,255,1);
transform rotateZ(720deg);
-webkit-transform rotateZ(720deg);
-moz-transform rotateZ(720deg); 

/** ------ / css样式来源至找黑客云优质源码网 / bbs.5g110.cn / -------- **/