JSFiddle - React, Tailwind, and code Playground

by jakie8

HTML

<script src="http://lab.jakiestfu.com/slowjs/slow.js"></script>
<div id="box"></div>

CSS

body{
    padding:20px;
}
#box{
    width:200px;
    height:200px;
    border:1px solid red;
    -webkit-transition:width 0.3s ease, height 0.3s ease;
    -moz-transition:width 0.3s ease, height 0.3s ease;
}

#box:hover{
    width:300px;
    height:300px;
}

JavaScript

slow.listen();