-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (41 loc) · 1.53 KB
/
index.html
File metadata and controls
45 lines (41 loc) · 1.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>3D example using Three.js and multiple windows</title>
<meta
name="description"
content="System developed by Bjorn Staal using local storage and the getScreenDetails() API to communicate between two windows rendering webGL 3D canvas."
/>
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Multi-Window 3D" />
<meta
name="twitter:description"
content="System developed by Bjorn Staal using local storage and the getScreenDetails() API to communicate between two windows rendering webGL 3D canvas."
/>
<meta
name="twitter:image"
content="https://cdn.glitch.global/d92d65fc-88c4-4b07-a275-7efa69b16ace/multi.png?v=1700821996612"
/>
<meta property="og:title" content="Multi-Window 3D" />
<meta
property="og:description"
content="System developed by Bjorn Staal using local storage and the getScreenDetails() API to communicate between two windows rendering webGL 3D canvas."
/>
<meta
property="og:image"
content="https://cdn.glitch.global/d92d65fc-88c4-4b07-a275-7efa69b16ace/multi.png?v=1700821996612"
/>
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="627" />
<script type="text/javascript" src="three.r124.min.js"></script>
<style type="text/css">
* {
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<script type="module" src="main.js"></script>
</body>
</html>