JSFiddle - React, Tailwind, and code Playground
HTML
<img src="https://i.imgur.com/MWrmK94.jpg" alt="">
<img src="https://i.imgur.com/YLTeJdB.jpg" alt="">
CSS
img {
position: absolute;
top: 0;
width: 100%;
}
img:first-child {
z-index: 1;
}
img:first-child:hover {
opacity: 0;
transition: opacity 1s ease;
}
img:first-child:not(:hover) {
opacity: 1;
transition: opacity 1s ease;
}