how do i stop auto sliding in my flexslider

前端 未结 1 972
小蘑菇
小蘑菇 2021-01-07 20:30

do anybody know how to stop auto sliding in a flex slider. as i have loaded that slider in my mobile web page. when the page is opened it slides to the next image without an

相关标签:
1条回答
  • 2021-01-07 21:11

    By default Flexslider has value slideshow: true so you have to change the value to false.

    $(window).load(function() {
      $('.flexslider').flexslider({
        slideshow: false
      });
    });
    
    0 讨论(0)
提交回复
热议问题