JSFiddle - React, Tailwind, and code Playground
HTML
<div class="cell">
<img src="http://www.charlesayoub.com/news/public/uploads/images/895377521.jpeg" alt="" display />
<img src="http://static.ddmcdn.com/gif/smart-car-1.jpg" class="fader" alt="" />
</div>
<div class="cell">
<img src="http://www.charlesayoub.com/news/public/uploads/images/895377521.jpeg" alt="" />
<img src="http://static.ddmcdn.com/gif/smart-car-1.jpg" class="fader" alt="" />
</div>
<div class="cell2">
<img src="http://www.charlesayoub.com/news/public/uploads/images/895377521.jpeg" alt="" />
<img src="http://static.ddmcdn.com/gif/smart-car-1.jpg" class="fader" alt="" />
</div>
CSS
.cell2{ width:100px; position:relative;height:100px; }
.cell2 img { width:100px; position:absolute; top:0; left:0; display:none;}
JavaScript
$(".cell2").hover(
function() {
$(this).find('.fader').fadeIn("slow");
},
);