Search code examples
cssprettyphoto

my lightbox plugin is flashing in full screen?


something is going on. everytime I click on it and view it to full screen it flashes 5 seconds later then starts flashing every 2 seconds? http://icpy.webs.com/prettyPhoto/index.html#prettyPhoto


Solution

  • Your lightbox is in slideshow mode with autostart true, change to false will solve the problem.

    $(".gallery:first a[rel^='prettyPhoto']").prettyPhoto({animation_speed:'normal',theme:'light_square',slideshow:3000, autoplay_slideshow: false});
    

    UPDATE

    If you do not want to use slideshow can simply change the line in question to:

    $(".gallery:first a[rel^='prettyPhoto']").prettyPhoto({animation_speed:'normal',theme:'light_square'});