JSFiddle - React, Tailwind, and code Playground

by c_vilander

HTML

<div class="one"></div>

CSS

body {padding: 25px}

.one {
    background-color: black;
    width: 50px;
    height: 50px;    
}
    
.one:hover {
    -webkit-animation: all 1.2s linear infinite;


}

@-webkit-keyframes all
{

0%   {-webkit-transform: rotateY(0deg);}
100%    {-webkit-transform: rotateY(720deg);}

}