gpt4 book ai didi

javascript - mediaelement.js - 防止向前搜索/允许向后搜索

转载 作者:行者123 更新时间:2023-11-30 08:07:56 24 4
gpt4 key购买 nike

你能给我一个想法或示例,我可以阻止向前搜索搜索栏但允许向后搜索吗?

这是我发现的,但它一直在循环:

media.addEventListener('seeked', function(e) {           
// player.setCurrentTime(0);
// player.play();
}, true);

最佳答案

我最近有同样的需求。

但并不是真的想修改源文件。

这是另一种不修改源代码的方法:

  var _player = $("#my_video_1")[0].player; //<-- get the reference to the player

old = _player.media.setCurrentTime; //<-- store the native setCurrentTime temporarily

_player.media.setCurrentTime = function(time) { //<-- override it with our own method
if(time <= this.currentTime){
old.apply(this,[time]); //<-- call the stored method if our conditions are met
}
};

关于javascript - mediaelement.js - 防止向前搜索/允许向后搜索,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14958190/

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