通过将“currentTime”设置为xxx秒来跳过电影的不同章节。 因此,我有一个屏幕,您可以点击所谓的“垫” - 每章一个。
如果您点击打击垫屏幕渐弱,则电影会淡入并从正确的位置开始(请参阅下面的代码)。这适用于任何浏览器。但它不适用于iPad / iPod / iPhone等移动设备。我发现问题是这个
$('video').get(0).currentTime =
以下是代码:
$('.chapter_pad a').each( function(index) {
$(this).click( function() {
currentVid = index;
endTime = videos[index]["end"];
$("#startscreen").fadeOut(0, function() {
$("#vids").fadeIn(0, function() {
$('#video').get(0).currentTime = videos[index]["start"];
$('#video').get(0).play();
});
});
});
});
说明: [“start”]和[“end”]是我之前创建的assoziative数组中的元素。这个assoziative数组包含章节名,开始和结束时间等。
任何解决此问题的想法都值得赞赏!
提前致谢! Fab