-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
84 lines (82 loc) · 3.75 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html>
<head>
<title>Free 60-minute meetings inside Matterport tours</title>
<link rel="shortcut icon" sizes="16x16" href="./assets/img/logo.png" />
<meta charset="UTF-8" />
<link href="assets/css/styles.css" rel="stylesheet" />
<link href="assets/css/ended-screens.css" rel="stylesheet" />
<link href="assets/css/world.css" rel="stylesheet" />
<link href="assets/css/home.css" rel="stylesheet" />
<link href="assets/css/loader.css" rel="stylesheet" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" />
</head>
<body>
<header id="header">
<div class="invite">
<button><img src="./assets/img/invite.svg" alt="Invite" /><span>INVITE SOMEONE</span></button>
</div>
<div id="counter"><span id="meetingtime">00:00</span></div>
</header>
<main id="app" class="home">
<section id="home" class="hide">
<div class="logo">
<img src="./assets/img/merged.svg" />
</div>
<div class="form" id="formId">
<h4 id="head">Paste your Matterport tour link to generate a free meeting link</h4>
<form>
<input type="text" value="Tour link" id="urlInput" required class="default" />
<button class="green" id="schedule">SCHEDULE</button>
<button type="submit" id="submit">GO</button>
</form>
<p><strong>Free</strong> 60-minute meetings inside Matterport tours for up to 16 participants</p>
</div>
<div class="video">
<iframe
src="https://www.youtube.com/embed/9kDxLc5o6W4"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen
></iframe>
</div>
</section>
<section id="loader-section">
<div class="loader"></div>
</section>
<section id="world-section" class="hide"></section>
<section id="thanks-section" class="hide">
<div class="buttons">
<h1>Meeting ended! Thank you for choosing our service. 👏</h1>
<button class="green feedback">SEND FEEDBACK</button>
<button class="meeting">NEW MEETING</button>
</div>
</section>
<section id="ended-section">
<div class="buttons">
<h1>💡 Time is up</h1>
<button class="green feedback">SEND FEEDBACK</button>
<button class="meeting">NEW MEETING</button>
</div>
</section>
</main>
<footer id="footer">
<div class="left">
<a href="https://docs.google.com/forms/d/e/1FAIpQLSc-YOjF0icjMjF5U9DaYcFOVzMNNVDamnE8FL0Opbpw_lrWbA/viewform" target="_blank"
>Contact Us</a
>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSfi1_F38row2CsxasyMkSGsWcpnM6v8APHL7Z2Hy8ICjn1uRA/viewform" target="_blank"
>Leave Feedback</a
>
</div>
<div class="right">
<span><span>Built with the </span><a href="https://superviz.com" target="_blank">SuperViz SDK</a></span>
</div>
</footer>
<script type="module" src="https://unpkg.com/@superviz/sdk@latest"></script>
<script type="module" src="https://unpkg.com/@superviz/matterport-plugin@latest"></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>