-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (25 loc) · 907 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ABENICS-WebViz</title>
<style>
body { margin: 0; overflow: hidden; } /* Remove scrollbars and margin */
</style>
<!-- Import Map (must be in <head>) -->
<script type="importmap">
{
"imports": {
"three": "https://cdn.jsdelivr.net/npm/three@0.152.2/build/three.module.js",
"three/examples/jsm/loaders/STLLoader": "https://cdn.jsdelivr.net/npm/three@0.152.2/examples/jsm/loaders/STLLoader.js",
"three/examples/jsm/controls/OrbitControls": "https://cdn.jsdelivr.net/npm/three@0.152.2/examples/jsm/controls/OrbitControls.js"
}
}
</script>
</head>
<body>
<!-- Load the JavaScript file -->
<script type="module" src="./main.js"></script>
</body>
</html>