forked from czczc/wbls-bee
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
71 lines (64 loc) · 2.41 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
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<title>WbLS demo</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<style>
body {
color: #cccccc;
font-family:Monospace;
font-size:12px;
text-align:center;
background-color: #000000;
/*background-color: white;*/
margin: 0px;
overflow: hidden;
}
#info {
position: absolute;
top: 0px;
left: 0px;
/*width: 100%;*/
padding: 10px;
text-align: left;
}
#statusbar {
position: absolute;
bottom: 0px;
left: 0px;
padding: 5px;
}
#container {
width: 85%;
}
a {color: #82beb7;}
.function {font-weight: bold;}
.key {color: orange; font-weight: bold;}
</style>
</head>
<body>
<div id="container"></div>
<!-- <div id="info"> |
<a href="#" id="play">play</a> |
<a href="#" id="prevEvent">prev event</a> <span class="key">p</span> |
<a href="#" id="nextEvent">next event</a> <span class="key">n</span> |
<a href="#" id="prevSlice">prev slice</a> <span class="key">j</span> |
<a href="#" id="nextSlice">next slice</a> <span class="key">k</span> |
</div> -->
<div id="info">
<h3 style="margin-bottom:0px; text-align:center; border:1px solid gray;">Optical Photon Process</h3><br/>
<span style="color:yellow">Cerenkov</span><br/>
<span style="color:blue">Transportation</span><br/>
<span style="color:red">Attenuation</span><br/>
<span style="color:green">G4FastSimulationManagerProcess</span><br/>
</div>
<script src="js/libs/jquery-2.1.4.min.js"></script>
<script src="js/libs/director.min.js"></script>
<script src="js/libs/dat.gui.min.js"></script>
<script src="js/libs/three.min.js"></script>
<script src="js/libs/OrbitControls.js"></script>
<script src="js/libs/screenfull.min.js"></script>
<script src="js/wbls.js"></script>
</body>
</html>