我在我正在构建的着陆页上设置了流程设置,并且工作正常,但是当剪辑完成时我无法触发事件。这是我正在使用的代码,我可能会错误地实现它,但我似乎无法弄明白。
$("#teaser_player").flowplayer({
playlist: [
[
{ mp4: "videos/video1.mp4" },
{ webm: "videos/video1.webm" },
{ ogg: "videos/video1.ogv" }
]
],
clip: {
autoPlay: false,
autoBuffering: true,
},
preload: true,
fullscreen: false
});
var elem = document.getElementById("teaser_player");
api = flowplayer(elem);
$("#puzzle4_video").fadeIn(500, function(){
api.play();
});
非常感谢任何帮助。
答案 0 :(得分:0)
你不知道吗,我发布后就知道了。
这就是我做的事情
api.bind("finish", function(e, api) {
alert("Alert");
});
美好的一天