css——动画、自转

案例演示:

在这里插入图片描述

代码:

<image src="/static/xxdqh.png" mode="aspectFill" class="zizhuan"></image>
.zizhuan {
    
    
	animation: wait 4s infinite;
}

@keyframes wait {
    
    
	100% {
    
    
		transform: rotate(360deg);
	}
}

猜你喜欢

转载自blog.csdn.net/xulihua_75/article/details/128343094