JSFiddle - React, Tailwind, and code Playground

by mikeys4u

HTML

<img src="https://www.heritagedecking.co.uk/wp-content/uploads/2018/01/arrow-down-white-300x157.png" class="arrow bounce">

CSS

.arrow {
  text-align: center;
  margin: 8% 0;
}
.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}