How to attach “slide” & “slid” events to the Bootstrap toolkit's carousel?

后端 未结 3 540
借酒劲吻你
借酒劲吻你 2020-12-14 17:16

Here\'s a fiddle with a working Bootstrap carousel. http://jsfiddle.net/jeykeu/5TDff/

And here\'s the official documentation which tells nothing about event usage. h

3条回答
  •  半阙折子戏
    2020-12-14 17:58

    For Bootstrap 3 implementations :

    Before event

    $('#myCarousel').bind('slide.bs.carousel', function (e) {
           console.log('before');
    });
    

    After event

    $('#myCarousel').bind('slid.bs.carousel', function (e) {
           console.log('after');
    });
    

提交回复
热议问题