Slick slider pause youtube video when slide change

前端 未结 3 1005
说谎
说谎 2021-01-03 00:35

I have created a image slider using Jquery Slick Slider, Its having youtube video clips as well. When page load youtube video is set to 1st slide of the slider and it is aut

3条回答
  •  轮回少年
    2021-01-03 00:45

    Adding off of Sequence's answer, this will allow the slider to function even if there is more than one slider on the page.

    $('.mainSlider').on('beforeChange', function(event, slick, currentSlide, nextSlide){
      var current = $(slick.$slides[currentSlide]);
      current.html(current.html());
    });
    

提交回复
热议问题