图片旋转动画

<style type="text/css">
#star_one_aminate{
width: 60px;
height: 60px;
position: absolute;
top: 10px;
left: 98px;
background: url(img/cluster-video.png);
-moz-animation: rotation 0.2s linear infinite;
-webkit-animation: rotation 0.2s linear infinite;
-o-animation: rotation 0.2s linear infinite;
background-size: 100%;
background-repeat: no-repeat;
}
@-webkit-keyframes rotation {
from {
-webkit-transform: rotate(0deg);
}
to {
-webkit-transform: rotate(360deg);
}
}
</style>
</head>
<body>
<div id="star_one_aminate">
</div>

</body>

posted @ 2019-07-03 09:52  sweeeper  阅读(270)  评论(0编辑  收藏  举报