JSFiddle - React, Tailwind, and code Playground

by Beben Koben

HTML

<img src="http://jsfiddle.net/img/logo.png" alt="jsfiddle-logo" id="imgHover"></img>

JavaScript

$(document).ready(function() {
    $('#imgHover').width(200);
    $('#imgHover').mouseover(function() {
        $(this).css("cursor", "pointer");
        $(this).animate({
            width: "400px"
        }, 'slow');
    });

    $('#imgHover').mouseout(function() {
        $(this).animate({
            width: "200px"
        }, 'slow');
    });
});