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

第四周

时间:2015-11-08 14:45:40      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:

transition和transform和animation的区别:

* transition(过渡)

div{

width:100px;
height:100px;
background-color:red;
transition:height 2s;
}

div:hover{

height:300px;

}

 

* transform(转化)

div{

width: 500px;
height: 300px;
border: 1px solid black;
transform: rotate(180deg);
transform: scale(1,1.5)

}

 

* annimation(动画)

div{

width:100px;
height:100px;
background:red;
animation:myfirst 5s;

}

@keyframes myfirst{

0% {background:red;}
25% {background:yellow;}
50% {background:blue;}
100% {background:green;}

}

 

第四周

标签:

原文地址:http://www.cnblogs.com/Jaelynkong/p/4947064.html

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