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

2021-04-06 20:27

阅读:719

标签: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


评论


亲,登录后才可以留言!