Skip to content
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ npm-debug.log
*.png
.env
.DS_Store
.venv
18 changes: 12 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,20 +1,26 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>3d example using three.js and multiple windows</title>
<title>Futuristic Particle Network — Multi-Window</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A futuristic particle network scene that synchronizes and connects across multiple browser windows using Three.js">
<script type="text/javascript" src="three.r124.min.js"></script>
<style type="text/css">

*
{
* {
margin: 0;
padding: 0;
overflow: hidden;
}
body {
background: #000;
}
canvas {
display: block;
}

</style>
</head>
<body>

<script type="module" src="main.js"></script>
</body>
</html>
Loading