JSFiddle - React, Tailwind, and code Playground
by Pavlo
HTML
<div id="card"></div>
CSS
#card.card {
left: 10px;
top: 0px;
-webkit-transform: rotate(720deg);
}
#card {
left: 10px;
top: 50%;
transition: all 5s;
width:100px;height:100px;
background:lightcoral;
position:absolute;
}
JavaScript
$("#card").addClass('card');