Preventing twitter bootstrap carousel from auto sliding on page load

后端 未结 10 1764
萌比男神i
萌比男神i 2020-12-07 17:13

So is there anyway to prevent twitter bootstrap carousel from auto sliding on the page load unless the next or previous button is clicked?

Thanks

10条回答
  •  一个人的身影
    2020-12-07 17:43

    Actually, the problem is now solved. I added the 'pause' argument to the method 'carousel' like below:

    $(document).ready(function() {      
       $('.carousel').carousel('pause');
    });
    

    Anyway, thanks so much @Yohn for your tips toward this solution.

提交回复
热议问题