-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
35 lines (35 loc) · 1015 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
<!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;
white-space: pre;
height: 25px;
background-color: rgb(70, 70, 70);
color: aliceblue;
font-family: 'Open Sans', sans-serif;
"
> Left click on an image: Open the image | Right click on an image: Select the image </div> <!-- Single line because of white-space:pre -->
<script type="module" src="/main.js"></script>
</body>
</html>