關於html5的video全屏作為背景的方法


 

1.直接用css來實現代碼如下

<style type="text/css">
*{
margin: 0px;
padding: 0px;
}
video{
position: fixed;
right: 0px;
bottom: 0px;
min-width: 100%;
min-height: 100%;
height: auto;
width: auto;
/*加濾鏡*/
/*-webkit-filter: grayscale(100%);*/
/*filter:grayscale(100%);*/
}
source{
min-width: 100%;
min-height: 100%;
height: auto;
width: auto;
}
</style>
</head>
<body>
//資源格式自己進行添加
 <video autoplay="autoplay" loop="loop">
<source src="video/ting.mp4" type="video/mp4" >;
</video>
</body>

 

2.通過插件,推薦使用ckplayer,然后配置參數,下載地址:www.ckplayer.com

給出一個改變寬度,高度的代碼獲取:

 

var docH=(document.body.clientHeight||document.documentElement.clientHeight)-20;
var docW=document.body.clientWidth||document.documentElement.clientWidth;
alert(docH);
CKobject.embedHTML5('a1','ckplayer_a1',docW,docH,video,flashvars,support);


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM