JSFiddle - React, Tailwind, and code Playground
HTML
<img id=logo src="http://thesaurus.maths.org/mmkb/media/png/Omega.png"/>
CSS
#logo {
width:300px;
height:300px;
}
JavaScript
setTimeout(function() {
$('#logo').animate({
width: '150px',
height: '150px'
}, 50);
}, 1500);