Video-JS如何通过单击Video来删除暂停播放

时间:2016-01-23 04:42:16

标签: jquery video video.js

我正在使用Video js player版本5.4.4。我希望能够在点击视频时删除播放/暂停切换。我将对click事件进行另一个操作。 2次点击事件相互冲突。


    $( "li .video-js" ).click(function() {
        //Do something here.
        //But the playToggle event is conflicting.
    });

1 个答案:

答案 0 :(得分:3)

This应该对您有用:

.video-js.vjs-playing .vjs-tech {
  pointer-events: none;
}

作为替代方案,您可以尝试一些解决方法:

myAwesomePlayer.on('pause', function() {
  myAwesomePlayer.play();
  // ...so you can do here all the stuff you want while the video is playing
});