css3实现元素不停旋转

网页开发中,经常会使用一些特效,达到一些炫酷的效果,比如音乐播放时封面的旋转,下面就来学习下css如何实现不停止旋转的效果吧。

css3实现元素不停旋转

主要使用了@keyframesanimation,以及指定infinite,播放次数不限来实现。

HTML代码如下:

<div class="wrap">
    <img class="rotate" src="./icon.webp" alt=""><br/>
    HTML中文网
</div>

CSS代码如下:(相关课程推荐:css视频教程

@keyframes rotation{
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.rotate{
    width: 100px;
    height: 100px;
    animation: rotation 3s linear infinite;
    border-radius: 250px;
    border: 4px solid rgba(255, 255, 255, .6);
}
.wrap{
	padding: 16px;
	text-align: center;
	background: #eee;
}

效果:

本文来自css3答疑栏目,欢迎学习!

以上就是css3实现元素不停旋转的详细内容,更多请关注易知道|edz.cc其它相关文章!

推荐阅读