/ / Jquery preloader & wow.js - javascript, jquery, wow.js

Jquery preloader & wow.js - javascript, jquery, wow.js

Používam wow.js plugin a tutoriál pre jutery preload.

Preloader funguje dobre, ale keď to mápredinštalované prvky na stránke, animácia wow.js už skončila. Chcem upraviť svoj kód tak, aby bolo všetko predinštalované.

Prečítal som to otázka odpoveď ale pre môj kód to nefungovalo.

Môj kód:

// makes sure the whole site is loaded
jQuery(window).load(function() {
// will first fade out the loading animation
jQuery("#status").fadeOut();

// will fade out the whole DIV that covers the website.
jQuery("#preloader").delay(500).fadeOut("slow");
})

Bolo by skvelé, keby mi niekto pomohol, Ďakujem!

odpovede:

1 pre odpoveď č. 1

Použite nasledujúci kód na implementáciu wow js s vašim vlastným kódom pred načítaním.

// makes sure the whole site is loaded
jQuery(window).load(function() {
// will first fade out the loading animation
jQuery("#status").fadeOut();

// will fade out the whole DIV that covers the website.
jQuery("#preloader").delay(500).fadeOut("slow");

// Here will be the WoW Js implementation.
setTimeout(function(){new WOW().init();}, 1000);
})