This repository was archived by the owner on Nov 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (33 loc) · 1.42 KB
/
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>
<title>Music Visualizer</title>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0"
/>
<link href="favicon.ico" rel="icon" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="css/main.css" />
</head>
<body>
<div id="overlay">
<button id="startButton">Go</button>
</div>
<script type="importmap">
{
"imports": {
"three": "https://cdn.jsdelivr.net/npm/[email protected]/build/three.module.js",
"OrbitControls": "https://cdn.jsdelivr.net/npm/[email protected]/examples/jsm/controls/OrbitControls.js",
"Stats": "https://cdn.jsdelivr.net/npm/[email protected]/examples/jsm/libs/stats.module.js",
"RGBELoader": "https://cdn.jsdelivr.net/npm/[email protected]/examples/jsm/loaders/RGBELoader.js",
"GUI": "https://cdn.jsdelivr.net/npm/[email protected]/examples/jsm/libs/dat.gui.module.js",
"GLTFLoader": "https://cdn.jsdelivr.net/npm/[email protected]/examples/jsm/loaders/GLTFLoader.js",
"OBJLoader": "https://cdn.jsdelivr.net/npm/[email protected]/examples/jsm/loaders/OBJLoader.js",
"RoughnessMipmapper": "https://cdn.jsdelivr.net/npm/[email protected]/examples/jsm/utils/RoughnessMipmapper.js"
}
}
</script>
<script type="module" src="main.js"></script>
</body>
</html>