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

css 动画效果

时间:2015-05-14 23:23:34      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:

css3的动画需要遵循@keyframes规制
<div>动画效果</div>

 

div{


width: 100px;
height: 100px;
background: red;
/* 相对布局*/
position: relative;
animation: anim 5s infinite alternate;
-webkit-animation: anim 5s infinite alternate;

}
@keyframes anim{

0%{background: red;left: 0px;top: 0px}
25%{background: blue;left: 200px;top: 0px}
50%{background: orange;left: 200px;top: 200px}
75%{background: yellow; left: 0px;top: 200px}
100%{background: red;left: 0;top: 0px}
}
@-webkit-keyframes anim{

0%{background: red;left: 0px;top: 0px}
25%{background: blue;left: 200px;top: 0px}
50%{background: orange;left: 200px;top: 200px}
75%{background: yellow; left: 0px;top: 200px}
100%{background: red;left: 0;top: 0px};
}

css 动画效果

标签:

原文地址:http://www.cnblogs.com/xiezefeng/p/4504715.html

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