-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (32 loc) · 917 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
27
28
29
30
31
32
33
<!DOCTYPE html>
<html>
<head>
<title>SuperViz - Matterport demo</title>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1"
/>
<link href="./src/styles.css" rel="stylesheet" />
</head>
<body>
<main id="app">
<section id="loader-section">
<div class="loader"></div>
</section>
<section id="content-section" class="hide hidden-menu">
<aside id="menu"></aside>
</section>
</main>
<script type="module" src="https://unpkg.com/@superviz/sdk@6.3.0"></script>
<script
type="module"
src="https://unpkg.com/@superviz/matterport-plugin@0.21.0"
></script>
<script
type="module"
src="https://cdnjs.cloudflare.com/ajax/libs/pubsub-js/1.9.4/pubsub.min.js"
></script>
<script type="module" src="src/index.js"></script>
</body>
</html>