JSFiddle - React, Tailwind, and code Playground

by Aakash Chakravarthy

HTML

<div id="ff">test</div>

CSS

#ff{
    background: #ff00ff;
    width: 200px;
    height: 200px;
}

JavaScript

$('#ff').click(function(){
    $(this).animate({scale: '+=0.33'}, {queue: false, duration: 1000});
    
    $(this).addClass('');
});