gpt4 book ai didi

onclick - 如何阻止 video-js onclick 事件暂停视频

转载 作者:行者123 更新时间:2023-12-02 19:30:54 27 4
gpt4 key购买 nike

我这里有一个简单的 JSFiddle:http://jsfiddle.net/cvCWc/2/

基本代码如下:

window.player = videojs("movie_container", { techOrder: ["html5", "slash"] }, function() {
videojs_player = this;
videojs_player.src({ src: "http://video-js.zencoder.com/oceans-clip.mp4", type: 'video/mp4'})

videojs_player.on("click", function(event){
event.preventDefault();
alert('click');
});

videojs_player.play();
});

我正在 try catch 视频上的所有点击事件以供将来处理,但我不希望视频在点击时暂停。有什么想法吗?

最佳答案

我找到了 HTML5 的答案...但我在 Flash 回退中没有收到点击事件。更新了 jsfdl:http://jsfiddle.net/cvCWc/3/

window.player = videojs("movie_container", { techOrder: ["html5", "flash"] }, function() {
videojs_player = this;
videojs_player.src({ src: "http://video-js.zencoder.com/oceans-clip.mp4", type: 'video/mp4'})
videojs_player.off('click');
videojs_player.on("click", function(event){
event.preventDefault();
console.log("click", event.clientX, event.clientY, videojs_player.currentTime());
});

videojs_player.play();
});

关于onclick - 如何阻止 video-js onclick 事件暂停视频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21470677/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com