首页 > 其他 > 详细

第四周

时间:2015-11-08 14:43:21      阅读:252      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!