如何停止滑动anythingSlider(jQuery插件)?

如何停止滑动anythingSlider(jQuery插件)?,jquery,anythingslider,Jquery,Anythingslider,如果用户想在当前页面=1时返回,我需要停止在anythingslider上滑动。所以我不想旋转。我试过了 onSlideBegin : function(e, slider){ return false; } // there is no check I just need to know how to stop sliding 但仍在下滑。 谢谢,也许吧 // Slideshow options autoPlay : false, // If tr

如果用户想在当前页面=1时返回,我需要停止在
anythingslider
上滑动。所以我不想旋转。我试过了

onSlideBegin : function(e, slider){
    return false;
} // there is no check I just need to know how to stop sliding
但仍在下滑。 谢谢,也许吧

// Slideshow options 
  autoPlay            : false,     // If true, the slideshow will start running; replaces "startStopped" option 
  autoPlayLocked      : false,     // If true, user changing slides will not stop the slideshow 
  autoPlayDelayed     : false,     // If true, starting a slideshow will delay advancing slides; if false, the slider will immediately advance to the next slide when slideshow starts 
  pauseOnHover        : true,      // If true & the slideshow is active, the slideshow will pause on hover 
  stopAtEnd           : false,     // If true & the slideshow is active, the slideshow will stop on the last page. This also stops the rewind effect when infiniteSlides is false. 
  playRtl             : false,     // If true, the slideshow will move right-to-left 

Try:
$('.anythingSlider').data('anythingSlider').startStop(false)。我试过了,但不起作用