JSFiddle - React, Tailwind, and code Playground

by mjmitche

HTML

<div class="blob">this is a div</div>

CSS

.blob{ 
    font-size: 14px;
    display: none;
    

}

JavaScript

$('.blob').show(1000, function(){

    $(this).animate({
        font-size: '16px',
        position: 'relative',
        top: '100px'
    
    }, 5000); 

});