Different slide duration for each item on bootstrap 3.1 carousel

后端 未结 4 1822
[愿得一人]
[愿得一人] 2020-12-01 11:44

I am trying to have different duration for each slide as my some slides have large content and some small please give me a solution with fiddle

I tried this but it o

4条回答
  •  温柔的废话
    2020-12-01 12:14

    $('.carousel .item').hasClass('active', function() {
        var SlideInterval = $(this).attr('data-interval');
        $('.carousel').carousel({ interval: SlideInterval });
    });
    

提交回复
热议问题