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