-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 1.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="static/css/styles.css" />
<title>Document</title>
</head>
<body>
<div>
<input type="file" name="load" id="file-input" />
</div>
<div id="exportOBJ-div" style="background-color: yellow">export obj</div>
<div style="height: 800px">
<canvas id="three-canvas"></canvas>
</div>
<script src="static/src/bundle.js"></script>
<script type="module" src="./static/src/main.js"></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"
integrity="sha512-dLxUelApnYxpLt6K2iomGngnHO83iUvZytA3YjDUCjT0HDOHKXnVYdf3hU4JjM8uEhxf9nD1/ey98U3t2vZ0qQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<script src="https://unpkg.com/[email protected]/examples/js/loaders/OBJLoader.js"></script>
</body>
</html>