• Resolved ivonnekaramoy

    (@ivonnekaramoy)


    This is a really simple and great plugin. Thank you for your creating it!

    I have just one question. Is there a way to remove the functionality where the slideshow stops on rollover?

    Thanks!
    Ivonne

Viewing 1 replies (of 1 total)
  • Plugin Author Josh Leuze

    (@jleuze)

    Hi Ivonne, thanks for trying Meteor Slides!

    There isn’t currently an option in the plugin to disable the slideshow from pausing.

    But, you can easily make this change in the plugin. Open up this file in your favorite text editor: meteor-slides/js/slideshow.js

    In that file, you’ll see a chunk of code that looks like this:

    $j(document).ready(function() {
        $j('.meteor-slides').cycle({
    		fx: $slidetransition,
    		speed: $slidespeed,
    		timeout: $slidetimeout,
    		pause: '1'
    	});
    });

    Simply switch pause from true to false on line 16 like this to disable it:

    $j(document).ready(function() {
        $j('.meteor-slides').cycle({
    		fx: $slidetransition,
    		speed: $slidespeed,
    		timeout: $slidetimeout,
    		pause: '0'
    	});
    });

    But that’s not a great solution since it will be erased when you update the plugin so I’ll make sure to add this as an option in the next version so that you won’t have to edit the plugin again.

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: Meteor Slides] remove stop on rollover’ is closed to new replies.