码迷,mamicode.com
首页 > Web开发 > 详细

风车360度旋转特效css3

时间:2017-06-19 18:32:49      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:ati   inf   linear   nsf   abs   ima   log   transform   box   

 1  <style>
 2         #box{
 3             width: 220px;
 4             height: 220px;
 5             position: absolute;
 6             margin: 300px;
 7             transform-origin: center center;//以图形中心为旋转原点
 8             animation: anima 1s linear infinite;//永远以1秒匀速执行动画
 9         }
10         @keyframes anima{//动画帧
11             0%{
12                 transform:rotate(0deg)
13 
14             }
15             25%{
16                 transform: rotate(90deg);
17             }
18             50%{
19                 transform: rotate(180deg);
20              }
21             75%{
22                 transform:rotate(270deg);
23             }
24             100%{
25                 transform: rotate( 360deg );
26             }
27         }
28     </style>
1 <body>
2 <div id="box"><img src="1.png" alt=""></div>
3 </body>

参考图片:

技术分享

1.png

风车360度旋转特效css3

标签:ati   inf   linear   nsf   abs   ima   log   transform   box   

原文地址:http://www.cnblogs.com/landen/p/7049830.html

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