其他分享
首页 > 其他分享> > animation——鼠标放上图片旋转

animation——鼠标放上图片旋转

作者:互联网

效果展示:

话不多说,直接上代码

<p><img class="demo" src="../../img/pageimg/qyyw_icon1.png"></p>
@keyframes bouncing{
   0%  {transform: rotate(0deg)}
   100%{transform: rotate(360deg)}
}
.demo:hover{
   animation: bouncing 0.5s Linear 0s 1 alternate both;
}

 

标签:rotate,鼠标,0deg,bouncing,transform,旋转,animation,demo
来源: https://www.cnblogs.com/cqiong/p/13566539.html