码迷,mamicode.com
首页 > 其他好文 > 详细

图片360度旋转

时间:2018-08-23 17:43:10      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:near   nim   style   src   animation   infinite   pre   ack   load   

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>图片循环旋转</title>
<style>
*{margin: 0; padding: 0;}
@-webkit-keyframes rotation{
from {-webkit-transform: rotate(0deg);}
to {-webkit-transform: rotate(360deg);}
}
.Rotation{
-webkit-transform: rotate(360deg);
animation: rotation 3s linear infinite;
-moz-animation: rotation 3s linear infinite;
-webkit-animation: rotation 3s linear infinite;
-o-animation: rotation 3s linear infinite;
}
.img{border-radius: 250px;}
</style>
</head>
<body>
<img class="Rotation img" src="loading_two.png" width="500" height="500"/>
</body>
</html>

 

图片360度旋转

标签:near   nim   style   src   animation   infinite   pre   ack   load   

原文地址:https://www.cnblogs.com/beimingbingpo/p/9525092.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!