我正在尝试添加视频库(我想使用多个文件,这些文件将以随机顺序播放)作为背景,但是找不到在js中实现的方法
我的html文件包含此js脚本,我希望该脚本播放多个文件,似乎找不到解决方法。
// Video element
videoEl: document.querySelector('#background_video'),
// Container element
container: document.querySelector('body'),
// Resize
resize: true,
// autoplay: false,
isMobile: window.matchMedia('(max-width: 768px)').matches,
playButton: document.querySelector('#play'),
pauseButton: document.querySelector('#pause'),
// Array of objects containing the src and type
// of different video formats to add
src: [
{
src: 'jews.mp4',
type: 'video/mp4'
},
{
src: 'jews.webm',
type: 'video/webm;codecs="vp8, vorbis"'
}
],
// What to do once video loads (initial frame)
onLoad: function () {
document.querySelector('#video_cover').style.display = 'none';
}