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

css3 自定义动画(2)位置的移动

时间:2016-10-04 16:05:49      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:

<style>
/*涉及到位置的必须给元素进行相对或绝对定位*/
@-webkit-keyframes move{
  0%{top:0px;left:0px;}
  25%{top:0px;left:300px;}
  50%{top:300px;left:300px;}
  75%{top:300px;left:0px;}
  100%{top:0px;left:0px;}

} 
   .box{
       width:100px;height:100px;background:red;position:absolute;-webkit-animation:5s move ease-in-out infinite alternate;
   }
   /*infinite 循环播放 alternate倒序播放*/

</style>

 

css3 自定义动画(2)位置的移动

标签:

原文地址:http://www.cnblogs.com/cuidan9495/p/5930461.html

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