<div></div>

div {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #454545;
  position: relative;
  animation: MyDiv;
  animation-duration: 4s;
  animation-iteration-count: 2;
  animation-timing-function: cubic-bezier(.05, .8, .1, .95);
}
@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.