top of page arrow
Atomic Rainbow Loader

Animated colors to let the user know the page hasn't finished loading.


Loading...


The javascript for the loader function:

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