Bootstrap JavaScript Carousel Doesn't Stop Cycling

前端 未结 11 1690
离开以前
离开以前 2020-12-29 02:25

Twitter Bootstrap Version: 2.0.3

Example HTML code:




        
11条回答
  •  轮回少年
    2020-12-29 03:12

    I'm not sure why but the main solution didn't work for me either. Weird.

    To fix my problem I did the following code.

    $('.carousel').carousel({interval: false});
    
    $(document).on('mouseleave', '.carousel', function() {
    
        $(this).carousel('pause');
    });
    

    See the documentation for carouselpause.

提交回复
热议问题