JSFiddle - React, Tailwind, and code Playground

HTML

<div id="pic">
    <img src="http://forum.htmlbook.ru/uploads/profile/photo-27140.jpg">
</div>

CSS

#pic {
    background: url('http://forum.htmlbook.ru/uploads/profile/photo-23045.jpg') no-repeat;
    width: 150px;
    height: 140px;
}

JavaScript

$("#pic").hover(function(){

    $(this).find("img").animate({opacity: 0}, 300);

}, function() {

    $(this).find("img").animate({opacity: 1}, 300);

});