-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworld.html
38 lines (38 loc) · 1.02 KB
/
world.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>NeX360 Viewer - MPIs visualization</title>
<link rel="stylesheet" href="styles/bulma.min.css">
<style>
html{
background-color: #3a3a3a;
}
body { margin: 0; }
.abs-center{
margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
text-align: center;
position: absolute;
color: #fff;
}
canvas{
margin-left: auto;
margin-right: auto;
}
</style>
</head>
<body>
<div class="abs-center" style=" top: 10px;">
Move the <span style="color:#00ffff;">Camera</span> by using main window
</div>
<!-- <div class="abs-center" style=" bottom: 0;"> Green show MPIs use to blend and output </div> -->
<script src="scripts/thrid-party/jquery-3.6.0.min.js"></script>
<script src="scripts/thrid-party/three-r130.js"></script>
<script src="scripts/thrid-party/OrbitControls.js"></script>
<script src="scripts/thrid-party/OBJLoader.js"></script>
<script src="scripts/world.js"></script>
</body>
</html>