<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);
}
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.