JSFiddle - React, Tailwind, and code Playground

by CME64

HTML

<img height="100px" width="100px"/>
<img height="100px" width="100px"/>
<img height="100px" width="100px"/>
<img height="100px" width="100px"/>
<img height="100px" width="100px"/>

JavaScript

$(document).ready(function(){
    $('img').animate({'height':'50px','width':'50px'},500);
    $('img').click(function(){
        $(this).animate({'height':'100px','width':'100px'},500);
        $(this).siblings('img').animate({'height':'50px','width':'50px'},500);
    });
});