-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (36 loc) · 944 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>My first three.js app</title>
<style>
html {
height: 100%;
}
body {
margin: 0;
height: 100%;
}
canvas {
width: 100%;
height: 100%;
display: block;
}
</style>
</head>
<body>
<div
id="info"
style="
text-align: center;
height: 25px;
background-color: rgb(70, 70, 70);
color: aliceblue;
font-family: 'Open Sans', sans-serif;
"
>
Open an image with left click, select images with right click or create a figure
</div>
<script type="module" src="/main.js"></script>
</body>
</html>