JSFiddle - React, Tailwind, and code Playground

by Subin Siby

HTML

<div class="container">
    My Text
</div>

CSS

.container{
    text-align: center;
}

JavaScript

function pop_up(){
    var begin_size = 10;
    var end_size = 60;
    var speed = 3000;

    $(".container").css("font-size", begin_size).animate({"font-size" : end_size}, speed);
}
pop_up()