Resume flexslider after touch/swipe
Asked Answered
O

2

6

Is there any way to resume the auto-playing of a Flexslider slideshow after a touch event? Right now it appears that once I swipe to navigate, the slideshow stops..

Oviduct answered 17/3, 2013 at 18:55 Comment(0)
S
8

UPDATE FOR FLEXISLIDER 2

The resume() event are no longer exist, the correct solution is using the after callback and use the event after in the initialization

$('.flexslider').flexslider(
    ...
    after: function(slider){ 
        slider.pause(); 
        slider.play(); 
    }
);
Standifer answered 9/1, 2014 at 20:14 Comment(0)
C
2

Take a look here: https://github.com/woothemes/FlexSlider/issues/21

The question has been asked before, and the answer is that it is possible to do what you're asking, however, it is a specific part of the design of the slider that it stops on a touch event, simply for better usability.

Commiserate answered 17/3, 2013 at 19:41 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.