-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (33 loc) · 1.53 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
<html>
<head>
<title>Performs</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="./data/imgs/favicon.png">
<link rel="stylesheet" href="https://cdn.skypack.dev/lexgui/build/lexgui.css">
<style>
html, body { width:100%; height:100%; margin:0; padding:0; overflow:hidden; }
</style>
<script src="./external/jquery-3.6.0.min.js"></script>
<script async src="./external/es-module-shims.js"></script>
<script type="importmap">
{
"imports": {
"three": "./external/three/build/three.module.js",
"three/addons/": "./external/three/jsm/",
"lexgui": "https://cdn.skypack.dev/lexgui/build/lexgui.module.js",
"lexgui/components/": "https://cdn.skypack.dev/lexgui/build/components/"
}
}
</script>
<!-- <link rel="stylesheet" href="external/lexgui/build/lexgui.css">
<script src="external/lexgui/build/lexgui.js"></script>
<script src="external/lexgui/build/components/codeeditor.js"></script> -->
</head>
<body>
<div id="loading" class="modal" style="background-color:rgba(51, 51, 51, 0.5); position: absolute; width: 100%; height: 100%;
display: flex; justify-content: center; align-items: center; z-index: 100; color: white; font-size: larger;">
<p>Loading avatar, please wait</p>
</div>
<script src="./js/App.js" type="module"></script>
</body>
</html>