-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (29 loc) · 1.03 KB
/
index.html
File metadata and controls
31 lines (29 loc) · 1.03 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Matterport Workshop</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<div class="action-bar">
<h1>Matterport Workshop</h1>
<button id="btn-start-tour">Start Tour</button>
<div>
<label for="transition-time">Transition Time</label>
<input type="number" placeholder="2000" value="2000" id="transition-time"></input>
</div>
<div>
<label for="wait-time">Wait Time</label>
<input type="number" placeholder="2000" value="2000" id="wait-time"></input>
</div>
<button id="btn-go-to-lobby">Go to lobby</button>
</div>
<div class="matterport-viewer-container">
<matterport-viewer m="ysctf6cu85sqt4iefuxywq0ha"></matterport-viewer>
</div>
<script type="module" src="src/index.js"></script>
</body>
</html>