-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.html
61 lines (54 loc) · 1.49 KB
/
template.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
<!DOCTYPE>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>room viewer</title>
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<style>
body {
margin: 0px;
background-color: #050505;
color: #fff;
overflow: hidden;
}
#wholeInfo {
display: block;
background-color: #050505;
width: 420px;
height: 80px;
font-size: 12px;
position: absolute;
right: 0;
opacity: 0;
}
#single-canvas {
position: absolute;
left: 0px;
background-color: #050505;
z-index: 20;
top: 0px;
}
#wholeInfo>span {
display: block;
}
.jid,
.name,
.content-type {
background-color: #050505;
color: white;
}
</style>
</head>
<body>
<div class='fps-container'></div>
<div class='file-button-container'></div>
<div class='down-button-container'></div>
<div class='furniture-info-container'></div>
<div class='housetype-info-container'></div>
<div class='datacheck-container'></div>
<div class='plane3D-container'></div>
<div class='arrow-button-container'></div>
<div class='right-menu-container'></div>
<div class='return-button-container'></div>
</body>
</html>