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

简单动画

时间:2016-02-28 11:04:50      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style type="text/css">
div
{/*设置初始值*/
    width:300px;
    height:200px;
    background:#0F0;
    position:relative;/*记得加上定位*/
    -webkit-animation:myfirst 5s;
}
@-webkit-keyframes myfirst /* Safari and Chrome */
{/*设置动画值*/
0%   {background:#0F0; left:0px; top:0px;}
25%  {background:#0C3; left:200px; top:0px;}
50%  {background:#096; left:200px; top:200px;}
75%  {background:#069; left:0px; top:200px;}
100% {background:#03C; left:0px; top:0px;}
}
</style>
</head>
<body>
<div></div>
</body>
</html>

随便画一画正方形。

简单动画

标签:

原文地址:http://www.cnblogs.com/webgavin/p/5224156.html

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