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 3s ease-in-out infinite;
  display: flex;
  width: 100%;
}

@keyframes phone {

 0%, 4%, 8%, 12%, 16%, 20%, 24%, 28%, 32% {
    transform: rotate(-21deg);
  }
  2%, 6%, 10%, 14%, 18%, 22%, 26%, 30% {
    transform: rotate(21deg);
  }
  33%, 100% {
    transform: rotate(0deg);
  }
 
}