JSFiddle - React, Tailwind, and code Playground

by blackhawx

HTML

<div class="box">
    <img src="https://www.google.com/images/srpr/logo11w.png" width="100" />
</div>

CSS

.box img {
    -webkit-transition:1s;
}
.box img.clicked{
    margin-left:50px;
 }

JavaScript

$('.box img').on('click', function() {
    $(this).toggleClass('clicked');
});