• kater89

    (@kater89)


    I have the current WP and plugin installed and for the most part everything is working well.

    I have just the arrow overlay on the slider images to swap through them however when I click the arrows, it shows the next image for a split second and then moves on to the next image. How can I stop them from basically skipping that middle image?

    One thing I can think of is the client wants them to switch every 2.5s so it is moving fairly quickly. The animations between slides (fade) last 500ms.

    Thanks!

Viewing 1 replies (of 1 total)
  • Hi I know this is late, but you can fix this by using unbind() on the button then bind() a new function for the next/prev slider function, ex:

    jQuery('.left-arrow').unbind('click').bind('click', function() {
    	jQuery('.slideshow').cycle('next');
    });
    jQuery('.right-arrow').unbind('click').bind('click', function() {
    	jQuery('.slideshow').cycle('prev');
    });

    This is how I fixed mine.
    Note: unbind() and bind() are deprecated on jquery 3.0,

Viewing 1 replies (of 1 total)
  • The topic ‘arrows change slider too fast’ is closed to new replies.