美文网首页
css3的keyframes无限旋转下去实现

css3的keyframes无限旋转下去实现

作者: lily_flight | 来源:发表于2017-10-25 14:21 被阅读0次

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<style>
.ig{
-webkit-animation:circle 1.5s infinite linear;
}
@-webkit-keyframes circle{
0%{ transform:rotate(0deg); }
100%{ transform:rotate(360deg); }
}
</style>
</head>
<body>
<div>
<img src="" class="ig">
</div>
</body>
</html>

相关文章

网友评论

      本文标题:css3的keyframes无限旋转下去实现

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