用视频做网页的背景 发表于 2017-03-10 | 分类于 html,css 用视频做背景图的简单方法。 结构1234<video autoplay loop poster="videobg.jpg" id="bgvid"> <source src="video.webm" type="video/webm"> <source src="video.mp4" type="video/mp4"></video> 样式123456789101112video#bgvid{ position: fixed; right: 0; bottom: 0; min-width: 100%; min-height: 100%; width: auto; height: auto; z-index: -100; background: url(polina.jpg) no-repeat; background-size: cover; } 速度优化会有影响,请审慎明智的使用。