Changes

From Drawn to Life Wiki
pretty loader test
Line 1: Line 1:  
/* All JavaScript here will be loaded for users of the Timeless skin */
 
/* All JavaScript here will be loaded for users of the Timeless skin */
 +
$(window).on('load', function(){
 +
  setTimeout(removeLoader, 2000); //wait for page load PLUS two seconds.
 +
});
 +
function removeLoader(){
 +
    $( "#smooth-loader" ).fadeOut(500, function() {
 +
      $( "#smooth-loader" ).remove(); //makes page more lightweight
 +
  }); 
 +
}
    
//Wii
 
//Wii