Pause Flexslider when overlay is open

前端 未结 3 1804
花落未央
花落未央 2021-01-06 04:09

We are currently working on a project that utilizes the Flexslider plugin (recently acquired by Woo Themes). We have multiple pop ups on this page and we want the slider to

3条回答
  •  Happy的楠姐
    2021-01-06 04:54

    I faced the same issue working with brightcove+flexslider. here is my workaround:

    before

            pausePlay: true,
            pauseText :"Pause",
            playText  :"Play"
    

    then

    video.addEventListener(BCMediaEvent.PLAY, function () {
        $('.flex-pauseplay .flex-pause').trigger('click');
    });
    
    video.addEventListener(BCMediaEvent.STOP, function () {
        $('.flex-pauseplay .flex-play').trigger('click');   
    });
    

    .flex-pauseplay .flex-play css opacity: 0

提交回复
热议问题