-
Notifications
You must be signed in to change notification settings - Fork 0
/
shouye.html
85 lines (69 loc) · 1.5 KB
/
shouye.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html style="height: 100%">
<head>
<style>
body {
height: 100%;
overflow-x: hidden;
z-index: 2;
}
#header {
background-color: rgb(136, 214, 220);
height: 10%;
color: white;
text-align: center;
padding: 5px;
}
#section {
width: 100%;
height: 80%;
float: left;
background-image: url(img/background.jpg);
background-repeat: no-repeat;
background-size: cover;
}
#float1 {
background-color: rgba(136, 214, 220, 0.8);
color: white;
position: absolute;
top: 55%;
left: 15%;
width: 25%;
height: 30%;
text-align: center;
margin-top: 0px;
z-index: 99 !important;
}
#footer {
height: 5%;
background-color: rgb(136, 214, 220);
color: white;
clear: both;
text-align: center;
padding: 5px;
}
</style>
</head>
<body>
<div id="header">
<h1>基于轨迹信息的校园特殊人员管理平台</h1>
</div>
<div id="section"></div>
<div id="float1">
<h1>设备</h1>
<p>
包括手牵手定位器,摄像头、温湿度传感器等等<br />……
</p>
</div>
<div id="float1" style="left:60%;">
<h1>功能</h1>
<p>
包括历史轨迹查询、隔离管理、摄像监控、温湿度传感器监控等等<br />……
</p>
</div>
</div>
<div id="footer">
Copyright : 武汉大学遥感学院空信专业第六小组
</div>
</body>
</html>