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

第十六节 css3动画之animation风车案列

时间:2020-03-14 16:27:41      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:near   bsp   type   ati   css3   form   class   col   utf-8   

 1 <!DOCTYPE html>
 2 <html lang="en">
 3 <head>
 4     <meta charset="UTF-8">
 5     <title>旋转的风车</title>
 6     <style type="text/css">
 7         @keyframes fengche{
 8             form{
 9                 transform: rotate(0deg);
10             }
11 
12             to{
13                 transform: rotate(360deg);
14             }
15         }
16 
17         .feng{
18             display:block;
19             width: 300px;
20             height: 300px;                
21             margin: 100px auto;
22             animation: fengche 5s linear infinite;
23         }
24     </style>
25 </head>
26 <body>
27     <img src="fengche.jpg" alt="风车" class="feng">
28 </body>
29 </html>

 

第十六节 css3动画之animation风车案列

标签:near   bsp   type   ati   css3   form   class   col   utf-8   

原文地址:https://www.cnblogs.com/kogmaw/p/12492522.html

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