JSFiddle - React, Tailwind, and code Playground
by gionaf
HTML
<div>
<img src="http://i444.photobucket.com/albums/qq165/junah42/Snark/idiocracy10qg3.png">
</div>
CSS
div {
background:url(http://www.ifc.com/wp-content/uploads/2012/08/eddie-izzard-bullet-in-the-face.jpg) top center no-repeat;
}
img {
max-width:100%;
-webkit-transition: opacity 1s ease;
-moz-transition: opacity 1s ease;
-ms-transition: opacity 1s ease;
-o-transition: opacity 1s ease;
transition: opacity 1s ease;
}
img:hover {
opacity:0;
}