How to stop Bootstrap carousel from autosliding?

前端 未结 5 982
轮回少年
轮回少年 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:53

    There are two ways.

    1.

    In your HTML code, you need to use data-interval="false"

    
    

    2.

    If you want to do with the help of Jquery then you need to add.

    //document ready
    $(document).ready(function(){
        //Event for pushed the video
        $('#your-carousel-id').carousel({
            pause: true,
            interval: false
        });
    });
    

    Thanks :)

提交回复
热议问题