jQuery-Waterwheel-Carousel icon indicating copy to clipboard operation
jQuery-Waterwheel-Carousel copied to clipboard

have autoplay turn off and on by a simple function call

Open monu180 opened this issue 12 years ago • 1 comments

can we have the autoplay feature turn off and on by a simple function call? like carousel.autoplay(true); // to turn autoplay on carousel.autoplay(false) // to turn autoplay off

monu180 avatar Dec 30 '13 12:12 monu180

add to after line 637;

this.stopAutoPlay = function () { autoPlay(true); options.autoPlay = 0; };

this.startAutoPlay = function () { autoPlay(false); options.autoPlay = 1; };

erdaldemirci avatar Nov 17 '17 19:11 erdaldemirci