JSFiddle - React, Tailwind, and code Playground

by mqchen

HTML

<div id="hello">I am a banana</div>

CSS

div {
   background-color: #ddd;   
}
.rotate
{
  -webkit-transition: all 2s ease-in-out;
  -webkit-transform : rotateY(360deg);
}

JavaScript

$('#hello').addClass('rotate');