美文网首页
vue使用css3实现无限旋转动画

vue使用css3实现无限旋转动画

作者: undefined汪少 | 来源:发表于2019-12-19 09:59 被阅读0次

<div id="app" ></div>

<style type="text/css">

/*无限旋转动画*/

@keyframes changDeg{

0%{

transform: rotate(0deg);

}

100%{

transform: rotate(360deg);

}

}

#app{

width:500px;

height: 500px;

margin:50px auto;

/*transform: rotate(0deg);*/

background-color:red;

animation:changDeg 2s linear 0.2s infinite;

}

</style>

相关文章

网友评论

      本文标题:vue使用css3实现无限旋转动画

      本文链接:https://www.haomeiwen.com/subject/hdfmnctx.html