Procházet zdrojové kódy

Googlebot crawler doesn't see the content revealed by wow.js

https://github.com/matthieua/WOW/issues/196
tags/v1.0.0
hawkeye116477 před 6 roky
rodič
revize
5a6221f50c
Žádný účet není propojen s e-mailovou adresou tvůrce revize
1 změnil soubory, kde provedl 9 přidání a 1 odebrání
  1. 9
    1
      assets/js/script.js

+ 9
- 1
assets/js/script.js Zobrazit soubor

@@ -164,7 +164,15 @@ var wow = new WOW({
offset: 100, // distance to the element when triggering the animation (default is 0)
mobile: false // trigger animations on mobile devices (default is true)
});
wow.init();

//https://github.com/matthieua/WOW/issues/196#issuecomment-348734401
var scrolled = false;
$(window).on('scroll', function() {
if (!scrolled) {
scrolled = true;
wow.init();
}
})

/* ========================================================================= */
/* Google Map Customization

Načítá se…
Zrušit
Uložit