Page flickers once in the middle of loading the page on every page I use the plugin.
Stops after uninstall. Looks as if the page loads twice. Happens in firefox only.
You can take a look at live site http://www.silnereci.sk if you like.
I tried changing every setting possible. I use it with EVA module to make a slideshow view of nodes pictures and set it as a teaser. Then I display one random teaser. So its kind of tricky, maybe that is causing the problem. If you can think of some better way to show a gallery from random nodes pictures id be happy to try also. Thanx.

Comments

mne’s picture

I have tried the other galleria module without using EVA and it still does that.
So its not particular to your module, and that resolves this issue I guess.
Besides this glitch, the module works great, thanx.

mne’s picture

found a js workaround, removes the flicker.

$(document).ready(function() {
  $('.img-gal-block').css('opacity', 0);
  Galleria.ready(function() {
    $('.img-gal-block').css('opacity', 1);
  })
})

Also it did only with non-native fonts, so I put the font href at the beginning of css which solved the issue, I think.