40 lines
1.5 KiB
HTML
40 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<title>首页</title>
|
||
<meta name="renderer" content="webkit|ie-comp|ie-stand">
|
||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||
<meta menu_name="viewport"
|
||
content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=0">
|
||
<meta http-equiv="Cache-Control" content="no-siteapp"/>
|
||
<link rel="shortcut icon" href="../favicon.ico" type="image/x-icon"/>
|
||
|
||
|
||
|
||
<!-- 让IE8/9支持媒体查询,从而兼容栅格 -->
|
||
<!--[if lt IE 9]>
|
||
<script src="https://cdn.staticfile.org/html5shiv/r29/html5.min.js"></script>
|
||
<script src="https://cdn.staticfile.org/respond.js/1.4.2/respond.min.js"></script>
|
||
<![endif]-->
|
||
<style>
|
||
body {
|
||
/* 加载背景图片 */
|
||
background-image: url(./images/welcome1.jpg);
|
||
/*background: #004467;*/
|
||
/* 背景图垂直、水平均居中 */
|
||
background-position: center center;
|
||
/* 背景图不平铺 */
|
||
background-repeat: no-repeat;
|
||
/* 当内容高度大于图片高度时,背景图像的位置相对于viewport固定 */
|
||
background-attachment: fixed; /*此条属性必须设置否则可能无效*/
|
||
/* 让背景图基于容器大小伸缩 */
|
||
background-size: cover;
|
||
}
|
||
|
||
</style>
|
||
</head>
|
||
<body>
|
||
|
||
</body>
|
||
</html> |