css实现图片旋转动画2d
时间: 2023-06-06 12:08:37 浏览: 150
css实现图片旋转效果
5星 · 资源好评率100%
非常感谢您的提问。关于CSS实现图片旋转动画2D,可以通过CSS3中的 transform 属性和 animation 属性来实现。具体实现方式可以参考以下代码:
HTML 代码:
```html
<div class="rotate">
<img src="your_image_url" alt="your_image">
</div>
```
CSS 代码:
```css
.rotate {
display: inline-block;
-webkit-animation: rotate 2s linear infinite;
animation: rotate 2s linear infinite;
}
/* @keyframes 定义动画 */
@-webkit-keyframes rotate {
from {
-webkit-transform: rotate(0); /* 开始角度为0度 */
}
to {
-webkit-transform: rotate(360deg); /* 结束角度为360度 */
}
}
@keyframes rotate {
from {
transform: rotate(0);
}
to {
transform: rotate(360deg);
}
}
```
通过以上代码,就可以实现一个简单的图片旋转动画2D效果。希望能对您有所帮助!
阅读全文