-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (60 loc) · 1.93 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<title>No Friends? No Problem.</title>
</head>
<body>
<!--Model Viewer JS-->
<script type="module" src="https://ajax.googleapis.com/ajax/libs/model-viewer/3.0.1/model-viewer.min.js"></script>
<div>
<h1>
No Friends? No Problem!
</h1>
<p>
Don't you hate when you want to party but you don't have any friends?<br>
Now you don't need to spend Friday night alone - click on the button below to summon your very own friend, Party Peter, through the power of augmented reality!
</p>
</div>
<!--Model Viewer HTML START-->
<model-viewer src="partypeter.glb" autoplay ar ar-modes="webxr scene-viewer quick-look" camera-controls poster="poster.webp" shadow-intensity="1">
<div class="progress-bar hide" slot="progress-bar">
<div class="update-bar"></div>
</div>
</model-viewer>
<!--Model Viewer HTML END-->
<div>
<h2>
Features of Party Peter
</h2>
<table>
<tr>
<th> </th>
<th>Party Peter</th>
<th>Real Life Friends</th>
</tr>
<tr>
<th>Always free to hang out</td>
<td>✓</td>
<td>X</td>
</tr>
<tr>
<th>Never late</td>
<td>✓</td>
<td>X</td>
</tr>
<tr>
<th>Listens to your boring work stories</td>
<td>✓</td>
<td>X</td>
</tr>
</table>
<button class="summoning-jutsu">
Let's Party!
</button>
</div>
</body>
</html>