篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html preloader con gif animata相关的知识,希望对你有一定的参考价值。
//PRELOADER
//funzione per nascondere il preloader al caricamento della pagina
$(window).on("load", function () {
//nascondo gif animata
$("#img-preloader").fadeOut('fast');
//nascondo il div con fondo bianco
$("#preloader").fadeOut('slow');
});
//FINE PRELOADER
/* PREOLADER */
#preloader {
/* imposto lo sfondo bianco e fisso a tutta pagina */
position: fixed;
left: 0;
top: 0;
z-index: 1000000001;
width: 100%;
height: 100%;
background: #fff;
}
#img-preloader {
/* imposto la gif animata al centro dello schermo */
position: absolute;
height: 32px;
width: auto;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
}