我正在使用Video js player版本5.4.4。我希望能够在点击视频时删除播放/暂停切换。我将对click事件进行另一个操作。 2次点击事件相互冲突。
$( "li .video-js" ).click(function() { //Do something here. //But the playToggle event is conflicting. });
答案 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
});