JSFiddle - React, Tailwind, and code Playground

HTML

<h1 id="zoomIt">Please hover me!</h1>

JavaScript

$('#zoomIt').hover(function(){
    //$(this).animate({zoom:2}, 1000);
    $(this).animate({"font-size":"4em"}, 1000);
}, function(){
    //$(this).animate({zoom:1}, 1000);
    $(this).animate({"font-size":"2em"}, 1000);
});