Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 42 additions & 17 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,20 +1,45 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>3d example using three.js and multiple windows</title>
<script type="text/javascript" src="three.r124.min.js"></script>
<style type="text/css">

*
{
margin: 0;
padding: 0;
}
<head>
<title>3D example using Three.js and multiple windows</title>

</style>
</head>
<body>

<script type="module" src="main.js"></script>
</body>
</html>
<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>