1. 程式人生 > >Web前端前沿技術 1 ____視訊背景

Web前端前沿技術 1 ____視訊背景

先看效果圖


主要程式碼如下:

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<title></title>
		<style>
			*{
				padding: 0;
				margin: 0;
			}
			.banner{
				width: 100%;
				min-width: 1200px;
				height: 500px;
				overflow: hidden;	/***溢位時隱藏*/
				position: relative;
				background: #000;
			}
			.banner video{
				width: 100%;
				position: relative;
				top: -100px;
				opacity: 0.4;				/***改變透明度,可以讓視訊模糊些**/
			}
			.banner h2{
				position: absolute;
				left: 0;
				top: 0; 
				color: #fff;
				width:100%;
				text-align: center;
				font-size: 50px;
				font-family: "微軟雅黑";
				padding: 80px 0;
			}
		</style>
	</head>
	<body>
		<section class="banner">
			<video loop  autoplay muted="muted">
				<source  src="video/city.mp4"></source>
			</video>
			<!--要讓字壓住視訊, 需要用定位-->
			<h2>具有大眾消費開胃特色 <br />中國傳統手工泡菜第一品牌</h2>
		</section>
	</body>
</html>
  完整實現 請參考 Webfront  工程