JSFiddle - React, Tailwind, and code Playground
by Kunal Virk
HTML
<div class="box"></div>
CSS
.box {width:200px; height:200px; float:left; margin:0; padding:0; border:1px solid #ccc; transform: matrix(0.9, 0, 0, 0.9, 54, 63); animation: boxAnim 5s linear 2s infinite alternate; transition: none 0s ease 0s;}
@keyframes boxAnim {
0% {transform: matrix(1, 0, 0, 1, 54, 63);}
50% {transform: matrix(0.2, 0, 0, 0.2, 54, 63);}
100% {transform: matrix(1, 0, 0, 1, 54, 63);}
}