JSFiddle - React, Tailwind, and code Playground

by 3rror404

HTML

<a class="call_me_pls_from_mobile" href="">
  <img src="https://c7.hotpng.com/preview/578/746/452/5bbc65ef3eb9c-thumbnail.jpg" alt="">
</a>

CSS

.call_me_pls_from_mobile {
  animation: phone 4s ease-in-out infinite;
  display: flex;
  width: 100%;
}

@keyframes phone {
 0%, 25% {
  transform: rotate(0) translateX(-21deg);
 }
 12.5% {
  transform: rotate(21deg) translateX(0);
 }
 26% {
   transform: rotate(0) translateX(0);
 }
}