(function () { var bv = new bideo(); bv.init({ // video element videoel: document.queryselector('#background_video'), // container element container: document.queryselector('#bg-video-box'), // 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: '/templates/main/video/bg-video.mp4', type: 'video/mp4' }, { src: '/templates/main/video/bg-video.mp4', type: 'video/webm;codecs="vp8, vorbis"' } ], // what to do once video loads (initial frame) onload: function () { document.queryselector('#video_cover').style.display = 'none'; } }); }());