How to stop a Vimeo video with jQuery

后端 未结 7 1304
情话喂你
情话喂你 2020-12-13 13:05

When I hide a YouTube video, it stops playing. However, this is not the case for Vimeo videos. Is there another way to stop a Vimeo video?

7条回答
  •  南笙
    南笙 (楼主)
    2020-12-13 13:39

        var vidUrl = $("iframe#video-frame").attr('src');
    
    
        //Basically stops and starts the video on modal open/close
        $('#video').on('hidden.bs.modal', function (e) {
            $("iframe#video-frame").attr('src','');
        });
    
        $('#video').on('show.bs.modal', function (e) {
            $("iframe#video-frame").attr('src', vidUrl);
        })
    

提交回复
热议问题