(function () { var bv = new bideo(); bv.init({ // video element videoel: $('#background_video'), // container element container: $('#bg-video-box'), // resize resize: true, // autoplay: false, ismobile: window.matchmedia('(max-width: 768px)').matches, playbutton: $('#play'), pausebutton: $('#pause'), // array of objects containing the src and type // of different video formats to add src: [ { src: 'video/bg-video.mp4', type: 'video/mp4' }, { src: 'video/bg-video.mp4', type: 'video/webm;codecs="vp8, vorbis"' } ], // what to do once video loads (initial frame) onload: function () { $('#video_cover').hide(); } }); }());