-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (46 loc) · 1.16 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
<!--
* @Author: Li Jian
* @Date: 2021-12-20 08:09:22
* @LastEditTime: 2022-03-17 10:37:47
* @LastEditors: Li Jian
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite App</title>
<!-- <script
src="https://cdnjs.cloudflare.com/ajax/libs/gl-matrix/2.8.1/gl-matrix-min.js"
integrity="sha512-zhHQR0/H5SEBL3Wn6yYSaTTZej12z0hVZKOv3TwCUXT1z5qeqGcXJLLrbERYRScEDDpYIJhPC1fk31gqR783iQ=="
crossorigin="anonymous"
defer
></script> -->
<style>
body,
html,
#app {
margin: 0;
padding: 0;
width: 100%;
height: 100vh;
min-width: 1200px;
overflow: hidden;
}
@media screen and (max-width: 1200px) {
body,
html,
#app {
overflow-x: auto;
}
}
</style>
<!-- <script src="./utils/webgl-utils.js"></script>
<script src="./utils/webgl-lessons-ui.js"></script> -->
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>