
css3动画旋转,内圆顺时针旋转,外圆逆时针旋转
1、html
<img src="img/about-img07.png" class="circle01 circle-pst">
<img src="img/about-img06.png" class="circle02 circle-pst">
2、css
.circle01 {animation: rotate1 5s infinite ease-in-out;
}
@keyframes rotate1 {from {transform: rotate(0deg);}to {transform: rotate(360deg);}
}.circle02 {animation: rotate2 5s infinite ease-in-out;
}@keyframes rotate2 {from {transform: rotate(360deg);}to {transform: rotate(0deg);}
}

















![[翻译]循环神经网络不可思议的有效性](https://img-blog.csdnimg.cn/20200516202213703.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3dlaXhpbl80NTE4MjAwMA==,size_16,color_FFFFFF,t_70)

