gpt4 book ai didi

javascript - popcorn.js 中的周期性事件

转载 作者:行者123 更新时间:2023-12-03 03:59:08 25 4
gpt4 key购买 nike

如何将 popcorn.js 配置为每次视频时间更新时发出事件?我应该只使用视频元素的 timeupdate 事件吗?

目前,我只能在特定开始时间设置事件:

var p = Popcorn( "#video" )
// play the video
.play()
// set the volume to zero
.volume( 0 )
.code({
start: 1,
end: 3,
onStart: function( options ) {
document.getElementById( "test1" ).innerHTML = "Yes";
},
onEnd: function( options ) {
document.getElementById( "test1" ).innerHTML = "No";
}
})

最佳答案

来自official Docs它说您每次更新玩家时间时都会捕获事件

var pop = Popcorn("#video");

pop.on("timeupdate", function( e ) {
console.log( "timeupdate fired!");
});

pop.play();

关于javascript - popcorn.js 中的周期性事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44808532/

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