How can I pause a Bootstrap Carousel on hover and resume it on mouse-out?

前端 未结 3 1733
半阙折子戏
半阙折子戏 2021-01-20 20:58

I have a Bootstrap Carousel on my website.

When the user hovers over an element #formcontainer, I\'d like to pause the carousel. And when I hover off, I

3条回答
  •  攒了一身酷
    2021-01-20 21:35

    Use carousel cycle method on mouseleave event

    $('#formcontainer').hover(function(){
       $("#myCarousel4").carousel('pause');
    },function(){
       $("#myCarousel4").carousel('cycle');
    });
    

提交回复
热议问题