Geekathon / galleriffic

Automatically exported from code.google.com/p/galleriffic
0 stars 0 forks source link

Removing slideshow feature all together #180

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
For some reason my slideshow doesn't continue to play after clicking a 
thumbnail image, it just fades out and back in on the same image. Refreshing 
the page starts the slideshow again.

Is it possible to disable the slideshow? I'd like to fix the above issue but 
don't have a ton of dev time to work on it.  

Thanks for the great work.

BTW - my javascript code at the bottom of my page looks like this,

<script type="text/javascript">
// We only want these styles applied when javascript is enabled
// $('div.navigation').css({'width' : '300px', 'float' : 'left'});
    // $('div.content').css('display', 'block');

        $(document).ready(function() {              

        // Initialize Minimal Galleriffic Gallery
            $('#thumbs').galleriffic({
                imageContainerSel:      '#slideshow',
                controlsContainerSel:   '#controls',
                autoStart:                 false,
                preloadAhead:              30,
                syncTransitions:           false,
            });
        });
    </script>

Original issue reported on code.google.com by sacramen...@gmail.com on 3 Feb 2011 at 1:28

GoogleCodeExporter commented 9 years ago
any ideas?  great plugin.  but I'll have to move to another solution for my 
project if I can't figure this out - so any help is appreciated.  thanks!

Original comment by sacramen...@gmail.com on 6 Feb 2011 at 10:35

GoogleCodeExporter commented 9 years ago
I ended up figuring this out on my own - actually, embarrassingly enough, my 
flicker issue was caused by a competing javascript file for an image slideshow 
on another page, using the same #slideshow id.  After removing that, the plugin 
works great.

Original comment by sacramen...@gmail.com on 8 Feb 2011 at 5:59