JSFiddle - React, Tailwind, and code Playground

by MegaScience

HTML

<div class="Foxy"></div>

CSS

body, .Foxy {
  background-color: black;
  margin: 0 auto;
}

.Foxy {
  width: 596px;
  height: 720px;
  background: url('http://i.imgur.com/3empXqN.png') left center;
  animation: play .8s steps(20) infinite reverse;
}

@keyframes play {
	100% { background-position: calc(100% * 20); }
}