css动画实现div内图片逆时针旋转

2,895 阅读1分钟

核心代码div `

` 核心代码css ` @keyframes rotate{ from{ transform:rotate(360deg) } to{ transform:rotate(0deg) } } .circle { animation: 9.5s linear 0s normal none infinite rotate; } `