level 10
<!doctype html>
<head>
<style>
@-webkit-keyframes mymove {
from {left:0px;}
to {left:200px;}
}
div{
position:relative;
width:100px;
height:100px;
background:gray;
-webkit-animation:mymove 1s ease-out infinite ;
}
</style>
</head>
<body>
<div></div>
</body>
2015年07月21日 11点07分
