JSFiddle - React, Tailwind, and code Playground

HTML

<img src="http://www.prelovac.com/vladimir/wp-content/uploads/2008/03/example.jpg" />

CSS

img {
    cursor : pointer;
}

JavaScript

$('img').toggle(
    function () {
        $(this).stop().slideUp(250, function () {
            $(this).attr('src', 'http://chachatelier.fr/programmation/images/mozodojo-mosaic-image.jpg').slideDown(250);
        });
    },
    function () {
        $(this).stop().slideUp(250, function () {
            $(this).attr('src', 'http://www.prelovac.com/vladimir/wp-content/uploads/2008/03/example.jpg').slideDown(250);
        });
    }
);