『html5、css3』将视频做为网页背景 超炫!

github项目地址:https://github.com/Ethan997/Video-background-page

想要实现这种效果很容易,只需要懂得H5的video, 按照我的步骤一步一步来就可以了~

首先要制作我们的页面,用到的是html5的新标签video

html :

<video autoplayloopposter="polina.jpg"class="bgvid"id="bgvid">

<source src="http://cdn.moji.com/websrc/video/video621.mp4" type="video/mp4">

</video>

 css样式也没有什么好说的,只是要让视频充满屏幕、循环、无声、直接播放、隐藏按钮和不重复就可以了。

css:

body{

background-color:gray;

background:url("http://cdn.moji.com/websrc/video/video621.mp4") no-repeat center0px;

}

video#bgvid  {

position: fixed; right:0; bottom:0;

min-width:100%; min-height:100%; width: auto;height:

auto;z-index:-100; background-size: cover;

}

来源:https://blog.csdn.net/weixin_33696822/article/details/89661294

相关推荐