第四节 css3动画之transition

2021-04-06 17:27

阅读:673

标签:0ms   动画   pre   过渡   idt   --   set   这一   har   

 1 
 2 
 7 DOCTYPE html>
 8 html lang="en">
 9 head>
10     meta charset="UTF-8">
11     title>Documenttitle>
12     style type="text/css">
13         .box{
14             width: 100px;
15             height: 100px;
16             background-color: gold;
17             /*transition: width 2s ease 0.5s;*/
18             /* 宽度单向运动 */
19             /*transition: width 2s ease,height 1s ease;*/
20             /* 宽高同时运动 */
21             /*transition: width 2s ease 0.5s,height 2s ease ;*/
22             /* 宽延时动,高不延时 */
23             transition: width 2s ease 0.5s,height 2s ease,background-color 2s ease 1s;
24             /* 先变宽高,最后变背景色 */
25             transition: all 2s ease 1s;
26             /* 多个属性同时做相同的动画,可以合并成这一句 */
27         }
28 
29         .box:hover{
30             width: 600px;
31             height:600px;
32             background-color: red;
33         }
34     style>
35 head>
36 body>
37     div class="box">div>
38 body>
39 html>

 

第四节 css3动画之transition

标签:0ms   动画   pre   过渡   idt   --   set   这一   har   

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


评论


亲,登录后才可以留言!