Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 BigVideo.js 在登录页面的背景中播放视频,并且试图让它在最后一帧结束,如何将海报图像设置为视频的最后一帧?这是在 bigvideo.js 或 video.js 中更改的设置吗?
BigVideo.JS 基于 Video.JS,因此您可以使用 Video.JS 播放器 API 来实现。
var BV = new $.BigVideo(); BV.init(); BV.show('some_video.mp4', {ambient:true}); // change the options as you like // Pause at the end BV.getPlayer().on("ended", function () { this.pause(); });