JSFiddle - React, Tailwind, and code Playground

by KevinGabbert

HTML

<div class="images">
     <img src="http://placehold.it/100x100/" />
     <img src="http://placehold.it/100x100" class="glowed"/>
      <img id="blackPawn" class=" thing piece ui-draggable" src="http://www.chessmangler.com/images/chessPieces/Chess.Merida/bp.png"  />
  </div>

CSS

.glowed{
    box-shadow: 0px 0px 60px 2px #cf5
  }

JavaScript

$('.thing').addClass('glowed');
$('.images img:eq(1)').fadeOut(700);
$('.images img:eq(1)').fadeOut(700); //.removeClass('glowed');