JSFiddle - React, Tailwind, and code Playground

by luka kupunia

HTML

<div>
    <img src="http://picsum.photos/300/300" alt="">
</div>

CSS

div {
    width: 300px;
    margin: 50px auto;
    perspective: 700px;
}
div img {
    transform: rotateY(0deg);
    animation: a linear 3s infinite;
}
@keyframes a {
    from {
        transform: rotateY(0deg);
    }
    50% {
        transform: rotateY(360deg);
    }
    100% {
        transform: rotateY(0deg);
    }
}