嘿朋友我在代码中需要的帮助很少:
我已经尝试了一些等待你回复的帮助人员
答案 0 :(得分:0)
您可以创建一个与此类似的脚本,它会添加并根据按下它们被推入数组的顺序来寻找暂停的时刻。这是一个关于它如何工作的粗略想法:
var player;
var cid = [];
var index = 0;
function onYouTubePlayerAPIReady() {
player = new YT.Player('video', {
events: {
'onReady': onPlayerReady
}
});
}
function onPlayerReady(event){
$("#pause").on('click', function() {
player.pauseVideo();
cid.push(player.getCurrentTime());
});
$("#seek").on('click', function() {
if (cid.length > 0 && index < cid.length) {
player.seekTo(cid[index]);
index++;
}
else {
index=0;
player.seekTo(cid[index]);
index++;
}
});