-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (61 loc) · 1.66 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>
<head>
<meta charset="utf-8" />
<title>BE A TENTACLE</title>
<style>
html,
body {
width: 100%;
height: 100%;
padding: 0;
margin: 0;
background: black;
color: white;
font-family: monospace;
font-size: 18px;
}
.facePicker {
text-align: center;
}
h1 {
text-align: center;
}
video {
display: block;
margin: auto;
width: auto;
max-width: 100%;
}
button {
background: white;
color: black;
font: inherit;
border: none;
padding: 0.5rem 1rem;
}
</style>
</head>
<body>
<div class="loadingNotice">
<h1>Loading...</h1>
</div>
<div class="facePicker" style="display: none">
<h1>Take a selfie!</h1>
<p>the image will stay in your browser and not get uploaded anywhere</p>
<video width="600" height="400" preload autoplay loop muted></video>
<button style="display: none">Go!</button>
</div>
<div class="detectingNotice" style="display: none">
<h1>Detecting faces...</h1>
</div>
<script src="/tentacles/scripts/lib/pixi.min.js"></script>
<script src="/tentacles/scripts/lib/tracking.min.js"></script>
<script src="/tentacles/scripts/lib/face-tracking.min.js"></script>
<script src="/tentacles/scripts/util.js"></script>
<script src="/tentacles/scripts/RopeDebug.js"></script>
<script src="/tentacles/scripts/Cat.js"></script>
<script src="/tentacles/scripts/KnifeTrail.js"></script>
<script src="/tentacles/scripts/index.js"></script>
</body>
</html>