Bouncy Loader
Animated silliness to let the user know the page hasn't finished loading.
The javascript for the loader function:
$(window).on("load", function() {
setTimeout(function() {
$('.ball-loader').fadeOut();
}, 1000);
});
Return to the code room...