CSS3 Spinning Animation

HTML

<div class="hotspot">

</div>

CSS

@keyframes imagebulger {
  0%,
  100% {
    background-size: 100% 100%;
  }
  50% {
    background-size: 0% 100%;
  }
}

div.hotspot {
  width: 200px;
  height: 100px;
  background-image: url("http://dummyimage.com/200x100/000/fff");
  background-repeat: no-repeat;
  animation: imagebulger 2s;
}