JSFiddle - React, Tailwind, and code Playground

by Ehsan Ziya

HTML

<img class='test' src='http://i.imgur.com/osLksIH.jpg' />

CSS

.test {
  width: 1280px;
  height: 1280px;
  animation: hue-rotate 4s linear infinite;
}

@keyframes hue-rotate {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}