【发布时间】:2013-07-08 11:44:16
【问题描述】:
我想在视频末尾显示大播放按钮,以便用户轻松重播。
好像这个大的播放按钮是默认显示的(我看的每一篇文章都是为了隐藏而不是显示...),但对我来说不是这样...
我尝试编辑以下函数(在 video.dev.js 文件中)但没有任何改变:
vjs.Player.prototype.onEnded = function(){
if (this.options_['loop']) {
this.currentTime(0);
this.play();
}
else { // I am not using loop mode
this.bigPlayButton.show();
this.pause();
}
};
感谢您的回复。
【问题讨论】:
标签: video.js