JSFiddle - React, Tailwind, and code Playground
by dmethvin
HTML
<div id="test"></div>
CSS
#test {
height: 100px;
width: 100px;
background-color: red;
transition: all 1200ms ease;
}
JavaScript
var style = {
"transform": "rotate3d(1, 1, 0, 30deg)"
};
$('#test').css(style)