flowplayer 各种事件

来源:互联网 发布:cpda项目数据分析挂靠 编辑:程序博客网 时间:2024/06/02 08:07

1 播放完成:

  html5:
// gets the first playervar api = flowplayer();// bind to the finish eventapi.bind("finish", function(e, api){    alert("播放完成!");});
 flash:
flowplayer("player", "flowplayer-3.2.16.swf", {    clip: {        onFinish: function() {            alert("播放完成!");        }    }});

0 0
原创粉丝点击