JSFiddle - React, Tailwind, and code Playground
by San-Kai Liao
HTML
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.17/themes/base/jquery-ui.css">
<div id="d-1"></div>
CSS
#d-1 {
left: 50px;
top: 50px;
width: 100px;
height: 50px;
background-color: red;
-webkit-transform: rotate(60deg);
}
JavaScript
$('#d-1').resizable();
$('#d-1').draggable();