How to stop Bootstrap carousel from autosliding?

前端 未结 5 925
轮回少年
轮回少年 2021-02-02 07:13

I have built a bootstrap video carousel. It is working just fine but, the only problem I have is the carousel keeps sliding to the next slide after 5 seconds. How do I make it s

5条回答
  •  遇见更好的自我
    2021-02-02 07:42

    To stop the autoplay is by just removing the attribute data-ride=”carousel” from the htmlcode

    
    

    There is another way to stop autoplay just add below code in your js file

    $(window).load(function() {
        $('.carousel').carousel('pause'); 
    });
    

提交回复
热议问题