<div class="multiple-animation-rotation">
    <img src="https://drive.google.com/uc?export=view&id=13TBj2wMdMKxukp4GAf2eFYHlS_p9T9bI" alt="">
</div>
.multiple-animation-rotation{
  position: relative;
  margin-top: 10px;
}
.multiple-animation-rotation img{
  width: 150px;
  background-color: #e0e4eb;
  position: absolute;
  top: 0;
  left: 0;
  animation: rotation 1s infinite linear;
}
@keyframes rotation {
  0%{
    transform: rotate(0deg);
  }
  100%{
    transform: rotate(360deg);
  }
}
Run Pen

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.