forked from yeemachine/touchtype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (42 loc) · 1.58 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Touch Type</title>
<link href="https://fonts.googleapis.com/css?family=IBM+Plex+Mono&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css">
<script>let isMobile = !!navigator.userAgent.match(/iphone|android|blackberry/ig) || false;</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.7.3/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.7.3/addons/p5.dom.min.js"></script>
<script src="https://unpkg.com/ml5@latest/dist/ml5.min.js" type="text/javascript"></script>
<script src="boid.js" defer></script>
<script src="ml.js" defer></script>
<script src="client.js" defer></script>
<script src="drag.js" defer></script>
</head>
<body>
<section class="ftue">
<div></div>
</section>
<main id="mainP5">
<i class="material-icons">
pause_circle_outline
</i>
</main>
<section class="loader"></section>
<div class="cardContainer">
<section class="card vidLoader"></section>
<section class="card" id="subP5"></section>
<section class="card description">
<div>
<h2>Touch Type</h2>
<span>Stand back and wave your hands to interact with the type slideshow!</span>
<a class="play disabled">Start</a>
</div>
</section>
</div>
</body>
</html>