-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHelloWorld.html
More file actions
89 lines (77 loc) · 2.41 KB
/
Copy pathHelloWorld.html
File metadata and controls
89 lines (77 loc) · 2.41 KB
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
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Use correct character set. -->
<meta charset="utf-8"/>
<!-- Tell IE to use the latest, best version. -->
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<!-- Make the application on mobile take up the full browser screen and disable user scaling. -->
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no"
/>
<title>基于轨迹信息的校内特殊人员管控应用</title>
<script src="Build/Cesium/Cesium.js"></script>
<script src="jquery-3.5.1.min.js"></script>
<style>
body, html {
margin: 0;
padding: 0;
}
a:hover {
color: red;
}
.mapEarth {
position: absolute;
width: 80%;
height: 100%;
display: inline-block;
float: right;
display: inline-block;
}
.menu {
float: left;
width: 20%;
height: 100%;
}
.menu div {
list-style: none;
height: 40px;
background-color: #F7F7F7;
text-align: center;
border: 0.2px solid #DFDFDF;
}
.fontWeight {
font-weight: 800;
color: black;
}
a{
font-size: 14px;
font-family: Arial, "宋体";
line-height: 40px;
text-decoration: none;
color: #0a001f;
}
</style>
</head>
<body>
<script type="text/javascript"> $(function () {
$("#menu").find("a").click(function () {
var index = $(this).index();
$(document).find('a').removeClass('fontWeight');
$(this).addClass("fontWeight");
});
});
</script>
<div class="all">
<div class="menu" id="menu">
<div><a href="shouye.html" target="shouye">首页</a></div>
<div><a href="guiji.html" target="shouye">历史轨迹</a></div>
<div><a href="weilan.html" target="shouye">电子围栏</a></div>
<div><a href="wenshidu.html" target="shouye">温湿度</a></div>
<div><a href="jiankong.html" target="shouye">监控视频</a></div>
</div>
<iframe src="shouye.html" class="mapEarth" name="shouye"></iframe>
</div>
</body>
</html>