<div></div>
div {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #40E0D0;
  position: relative;
  animation: MyDiv;
  animation-duration: 4s;
  animation-iteration-count: 2;
  animation-timing-function: ease-out;
}

@keyframes MyDiv {
  0%   {left: 0px; top: 0px;}
  100%  {left: 150px; top: 0px;}
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.