JSFiddle - React, Tailwind, and code Playground
HTML
<a class="elem" href="#">enlace 1
<img src="http://www.threadbombing.com/data/media/2/banana_huge.gif"/>
</a>
<a class="elem" href="#">enlace n
<img src="http://cdn.webadictos.net/media/2008/07/animaciones-gif.gif"/>
</a>
CSS
img{
display:none;
width:25px;
height:25px;
border:0;
}
JavaScript
$(".elem").hover(
function(){
$(this).children().fadeIn("slow");
},
function(){
$(this).children().fadeOut(0);
}
);