-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodel_scene.html
More file actions
47 lines (42 loc) · 1.19 KB
/
model_scene.html
File metadata and controls
47 lines (42 loc) · 1.19 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite App</title>
<style>
html,body{
height: 100%;
margin: 0;
}
#scene{
position: absolute;
top: 0;
left: 0;
}
#back_button{
background: #000;
}
#UI{
position: absolute;
}
.icon{
width: 32px;
height: 32px;
margin-right: 10px;
}
</style>
</head>
<body>
<canvas id='scene'></canvas>
<div id="UI">
<button id="back_button" style="background: transparent;border-style: none;margin: 16px;" onclick="window.location='index.html'">
<svg class="icon" viewBox="0 0 8 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7 13L1 7L7 1" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</button>
</div>
<script type="module" src="/model_scene.js"></script>
</body>
</html>