JSFiddle - React, Tailwind, and code Playground

by zlojnaxa

HTML

<br>
<a href="https://vk.com">123456789</a><br><br>

<img src="https://a.d-cd.net/2a21e8cs-200.jpg" id="first">
<img src="http://partsbook.ru/cimg/2015/040701/1837351" id="second">

CSS

html, body{margin: 0px 0px 0px 0px;width:  100%;background: #c2ffc4;}

#first{
	opacity: 1;
}

#second{
	opacity: 0;
	margin: 0px  0px  0px  -204px;
}

JavaScript

$('a').mouseenter(function(){
    $('#first').animate({opacity:0},500);
    $('#second').animate({opacity:1},500);
});

$('a').mouseleave(function(){
    $('#first').animate({opacity:1},500);
    $('#second').animate({opacity:0},500);
});