是否可以在全屏模式下在 HTML5 视频控件上显示字幕?
我可以在窗口模式下显示它们(例如在 FF 11.0 上),稍微修改版本的cuepoint.js来显示“实时”字幕:
Cuepoint.prototype.addLiveSlide = function(html) {
var self;
this.html = html;
self = this;
return this.video.addEventListener("timeupdate", function() {
return self.update(html);
},
false);
};
但是,当用户全屏时,字幕不显示......当回到窗口模式时,它们会再次显示。
这种行为是设计使然、错误还是我错过了什么?