div { width:90px; height:90px;
position:fixed; z-index:2; left:0; top:0;
-webkit-animation-name: 'anime';
-webkit-animation-duration: 1000ms;
-webkit-animation-iteration-count: infinite;
-webkit-animation-direction: normal;
-webkit-animation-timing-function: linear;
animation-name: 'anime';
animation-duration: 1000ms;
animation-iteration-count: infinite;
animation-direction: normal;
animation-timing-function: linear;
background:#1E800E;}
@-webkit-keyframes 'anime' {
from {left:0}
50% {left:60px}
60% {left:50px}
70% {left:60px;}
to {left:0px}
}