<div></div>
div {
width: 50px;
height: 50px;
border-radius: 50%;
background: #CCAC93;
position: relative;
animation: MyDiv;
animation-duration: 4s;
animation-iteration-count: 2;
animation-timing-function: step-start;
}
@keyframes MyDiv {
0% {left: 0px; top: 0px;}
100% {left: 150px; top: 0px;}
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.