Slick slider pause youtube video when slide change

前端 未结 3 1011
说谎
说谎 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:42

    I would reset the HTML content. It will kill the IFrame and rebuild it.

    var slider =  $('.mainSlider').slick({
        slidesToShow: 1,
        autoplay: false,
        autoplaySpeed: 5000
    });
    
    slider.on('beforeChange', function(event, slick, currentSlide, nextSlide){
        var current = $('.slick-current');
        current.html(current.html());
    });
    

提交回复
热议问题