css01-单一图片旋转 发表于 2024-05-01 分类于 前端技术 , css 本文字数: 271 阅读时长 ≈ 1 分钟 代码示例 See the Pen css03 by Zen.Wu (@zenwu) on CodePen. 学习内容1、设置动画,使用 transform: rotate() 进行 0 ~ 360deg 旋转。 12345678@keyframes rotate { from { transform: rotate(0); } to { transform: rotate(360deg); }} 2、对 img 的 animation 加载动画 123img { animation: rotate 10s infinite linear;} --------------本文结束 感谢您的阅读--------------