“Script PHP Page Loader” Réponses codées

mon chargeur charge continuellement js

    
$('body').append('<div style="" id="loadingDiv"><div class="loader">Loading...</div></div>');
$(window).on('load', function(){
  setTimeout(removeLoader, 2000); //wait for page load PLUS two seconds.
});
function removeLoader(){
    $( "#loadingDiv" ).fadeOut(500, function() {
      // fadeOut complete. Remove the loading div
      $( "#loadingDiv" ).remove(); //makes page more lightweight 
  });  
}
Awful Alligator

Script PHP Page Loader

$('body').append('<div style="" id="loadingDiv"><div class="loader">Loading...</div></div>');
$(window).on('load', function(){
  setTimeout(removeLoader, 2000); //wait for page load PLUS two seconds.
});
function removeLoader(){
    $( "#loadingDiv" ).fadeOut(500, function() {
      // fadeOut complete. Remove the loading div
      $( "#loadingDiv" ).remove(); //makes page more lightweight 
  });  
}
Upset Unicorn

Réponses similaires à “Script PHP Page Loader”

Questions similaires à “Script PHP Page Loader”

Plus de réponses similaires à “Script PHP Page Loader” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code