css动画实现div内图片逆时针旋转 前端晋级攻城狮 2019-04-16 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; } `