这是我的 html5 方法:
bindProgressUpdate: function() {
var self = this;
$(this.video).on('timeupdate', function() {
var progressInPercent = self.video.currentTime / self.video.duration * 100;
progressInPercent = Math.round(progressInPercent * 100) / 100;
$(document).trigger('update_progress', [progressInPercent, self.video.currentTime, self.video.duration]);
});
现在我正在实现一个使用相同接口的闪退,所以我需要重现视频元素的行为。然而,flowplayer 似乎并没有在距离timeupdate
事件很近的地方触发任何东西。
那里有类似的东西,还是我必须在后台设置自己的间隔?