JSFiddle - React, Tailwind, and code Playground

by basiclaser

HTML

<img src="https://sociorocketnewsen.files.wordpress.com/2013/07/bullet_cat1.jpg" />
<img src="https://sociorocketnewsen.files.wordpress.com/2013/07/bullet_cat1.jpg" />
<img src="https://sociorocketnewsen.files.wordpress.com/2013/07/bullet_cat1.jpg" />
<img src="https://sociorocketnewsen.files.wordpress.com/2013/07/bullet_cat1.jpg" />

CSS

img {
    position:absolute;
    top:5px;
    left:5px;
    filter: gray alpha(opacity=70); /* IE6-9 */
    -webkit-filter: grayscale(70%); /* Chrome 19+ & Safari 6+ */
    -webkit-transition: all .6s ease; /* Fade to color for Chrome and Safari */
}
img:hover {
    filter: none;
    -webkit-filter: grayscale(0%);
    transition: all 0.6s linear;
}

JavaScript

$(document).ready(function(){
    $(document).querySelector("img").remove();
})