-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (60 loc) · 2.09 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="format-detection" content="telephone=no" />
<meta name="format-detection" content="email=no">
<title>我的家乡</title>
<link rel="icon" type="image/png" href="images/tab.png" />
<link href="./css/bootstrap.min.css" rel="stylesheet" type="text/css" media="all"/>
<link href="./css/hjj-style.css" rel="stylesheet" type="text/css" media="all"/>
<link href="./css/hjj-header.css" rel="stylesheet" type="text/css" media="all"/>
<link href="./css/hjj-screen.css" rel="stylesheet" type="text/css" media="screen">
<script src="./js/jquery.min.js"></script>
<script src="./js/bootstrap.min.js"></script>
<script src="./js/hjj-header.js"></script>
<script src="./js/hjj-footer.js"></script>
<style type="text/css">
*{margin: 0;padding: 0}
html,body{height: 100%}
.outer-wrap{height: 100%;position: relative;}
.welcome-panel{
width: 300px;
height: 300px;
background-color: rgba(255, 255, 255, 0.5);
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
border-radius: 25%;
text-align: center;
}
.welcome-panel .empty,
.welcome-panel .text {
display: inline-block;
*display: inline;
*zoom: 1;
vertical-align: middle;
font-family: FZShuTi, Arial, Helvetica, sans-serif;
font-size:2em;
}
.welcome-panel .empty {
height: 100%;
}
</style>
</head>
<body class = "home-bg">
<div class="outer-wrap">
<div id = "div_header"> </div>
<script> load_header("div_header") </script>
<div class="welcome-panel">
<span class="empty"></span>
<span class="text">欢迎来到我的家乡<br/> 泉州</span>
</div>
</div>
</body>
</html>