JSFiddle - React, Tailwind, and code Playground
HTML
<span id="load-status">Loading...</span>
<div id="body-background">
<img src="http://www.usedcarsite.com/perftest/gfx/blueangels.jpg???????6565206" alt="Bg">
</div>
JavaScript
var img = $('img:first');
var i = $('<img>').bind('load',function(){
$('#load-status').text('COMPLETE!');
img.animate({
width: '640px',
height: '480px'
});
});
i.attr('src',$('img').attr('src'));