JSFiddle - React, Tailwind, and code Playground

by darcyclarke

HTML

<div></div>
<div></div>
<div></div>
<div></div>

CSS

div {
 width: 50px;
  height: 50px;
   background: #bada55;
   margin: 0 0 2px 0;
}

JavaScript

$.when($('div').animate({"opacity": "0"}, 1000)).done(function() {
    console.log("yo!");
});