-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·53 lines (53 loc) · 1.81 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<title>MonacoinNodeMap</title>
<link rel="stylesheet" href="css/style.css">
<link rel="preload" href="https://storageapi.fleek.co/wakiyamap-team-bucket/mona-object/scene.gltf" as="fetch" crossorigin>
<link rel="preload" href="https://storageapi.fleek.co/wakiyamap-team-bucket/mona-object/scene.bin" as="fetch" crossorigin>
<link rel="preload" href="https://storageapi.fleek.co/wakiyamap-team-bucket/mona-object/textures/lambert1_baseColor.png" as="image" crossorigin>
<link rel="preload" href="img/worldmap.png" as="image" crossorigin>
<script defer src="js/three.min.js"></script>
<script defer src="js/GLTFLoader.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script defer src="js/TrackballControls.js"></script>
<script defer src="js/main.js"></script>
</head>
<body>
<div class="monacoin-logo">
<img src="img/menu-logo.png" width=60 height=60 id="js-show-popup">
</div>
<div class="github-logo">
<a href="https://github.com/wakiyamap/monacoin-nodemap" target="_blank" rel="noopener"><img src="img/icon-github.png" width=30 height=30></a>
</div>
<div class="textboard">
<p class="textboard-element">
脇山珠美ちゃんかわいい!
</p>
</div>
<div class="popup" id="js-popup">
<div class="popup-inner">
<div class="close-btn" id="js-close-btn">x</div>
<div id ="versionTable">
<table>
<thead>
<tr><th>Version</th></tr>
</thead>
<tbody id="version-table"></tbody>
</table>
</div>
<div id ="networkTable">
<table>
<thead>
<tr><th>Network</th></tr>
</thead>
<tbody id="network-table"></tbody>
</table>
</div>
</div>
<div class="black-background" id="js-black-bg"></div>
</div>
</body>
</html>