JSFiddle - React, Tailwind, and code Playground

HTML

<div class="tile">
</div>

CSS

div.tile {
    width:100px;
    height:100px;
    margin:20px;
    background:red;
    -webkit-animation: example 0.75s ease 0s infinite alternate;
}
@-webkit-keyframes example {
    from {
       -webkit-transform: perspective(300) rotateY(-90deg);
       -webkit-transform-origin: 0% 0%;
    }
    to {
       -webkit-transform: perspective(300) rotateY(0deg);
        -webkit-transform-origin: 0% 0%;
    }
}