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"/>
</div>
CSS
.glowed{
box-shadow: 0px 0px 30px 2px #cf5
}
JavaScript
$('.images img:eq(1)').fadeIn(700);
$('.images img:eq(1)').fadeOut(700);