top of page arrow
Wormy Loader

A useless animation to let users know the page hasn't finished loading yet.
Also, a giant pain in the css.




The javascript for the loader function:

$(window).on("load", function() {
 setTimeout(function() {
  $('.ball-loader').fadeOut();
 }, 1000);
});