想在你的網頁首頁中全屏播放一段視頻嗎?而這段視頻是做爲網頁的背景,不影響網頁內容的正常瀏覽。那麼我告訴你有一款Javascript庫正合你意,它就是Bideo.js。javascript
參考網址:css
https://www.helloweba.net/javascript/544.htmlhtml
http://www.sucaihuo.com/js/1440.htmljava
自動調整:Bideo.js能夠根據當前瀏覽器窗口的大小自動調整視頻尺寸,當瀏覽器窗口調整時,它會自適應窗口尺寸,移動端、PC端都能自動調整,使視頻做爲背景並全屏展現。git
覆蓋:視頻做爲網頁背景後,咱們能夠任意在視頻上層放置任意HTML內容。github
視頻封面:頁面打開時,視頻可能須要幾秒鐘才能加載完,那麼咱們能夠設置一張圖片做爲視頻的封面,等加載完再播放。web
在你的頁面body中加入以下HTML代碼,很顯然,<video>
標籤是用來加載視頻的,屬性loop
是指循環播放視頻,muted
是指靜音模式,即音量爲0。#video_cover
是默認的視頻封面。#overlay
是遮罩層,全部其餘頁面內容在遮罩層上展現。瀏覽器
<div id="container"> <video id="background_video" loop muted></video> <div id="video_cover"></div> <div id="overlay"></div> <div id="video_controls"> <span id="play"> <img src="play.png"> </span> <span id="pause"> <img src="pause.png"> </span> </div> <section id="main_content"> <div id="head"> <h1>HTML5輕鬆實現全屏視頻背景-Bideo.js</h1> <p class="sub_head">一個能夠輕鬆添加頁面全屏背景視頻的Javscript庫</p> <p class="info">(稍等片刻,視頻加載須要一點點時間.)</p> </div> </section> </div>
咱們還添加了#video_controls
,這個是用來控制視頻播放與暫停的,適用於手機移動端。最後你能夠在接下來的section
中添加任意你想展現的HTML內容了。ide
CSS也是比較關鍵,最須要關注的是#container
和#background_video
的設置。如下css代碼直接拿去無需解釋:oop
* {
margin: 0; padding: 0; } html, body { width: 100%; height: 100%; overflow: hidden; } #container { overflow: hidden; position: absolute; top: 0; left: 0; right: 0; bottom: 0; height: 100%; } #background_video { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); object-fit: cover; height: 100%; width: 100%; } #video_cover { position: absolute; width: 100%; height: 100%; background: url('video_cover.jpeg') no-repeat; background-size: cover; background-position: center; } #overlay { position: absolute; top: 0; right: 0; left: 0; bottom: 0; background: rgba(0,0,0,0.5); }
首先加載Bideo庫:
<script src="bideo.js"></script>
接着實例化bideo:new Bideo()
,而後直接初始化加載,設置以下選項:
(function () { var bv = new Bideo(); bv.init({ // Video元素 videoEl: document.querySelector('#background_video'), // 容器元素 container: document.querySelector('body'), // 自適應調整 resize: true, // autoplay: false, isMobile: window.matchMedia('(max-width: 768px)').matches, playButton: document.querySelector('#play'), pauseButton: document.querySelector('#pause'), // 加載視頻源, 根據實際業務更換本身的視頻源文件 src: [ { src: 'http://ak4.picdn.net/shutterstock/videos/4170274/preview/stock-footage-beautiful-girl-lying-on-the-meadow-and-dreaming-enjoy-nature-close-up-slow-motion-footage.mp4', type: 'video/mp4' }, { src: 'night.webm', type: 'video/webm;codecs="vp8, vorbis"' } ], // 一旦視頻加載後即將視頻封面隱藏 onLoad: function () { document.querySelector('#video_cover').style.display = 'none'; } }); }());
就這樣一個看起來高大上的背景視頻頁面就完工了,歡迎查看在線演示DEMO和下載源代碼。更多有關Bideo.js的信息請查看github項目地址:https://github.com/rishabhp/bideo.js。