-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (53 loc) · 2 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
<!DOCTYPE html>
<html>
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="image/x-icon" href="/images/favicon.ico">
<title>Jermdle</title>
<script type="module" src="cookies.js"></script>
<script type="module" src="jermdle.js"></script>
<body>
<div class="body-center">
<p>Try to guess the date the stream occurred in 4 turns or less.</p>
<div>
<div class="yt">
<iframe class="ytVideo" id="ytVideo" src="" title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen>
</iframe>
</div>
<p class="videoTitle" id="ytTitle"></p>
<table id="table">
<tr id="row0">
<td></td>
<td></td>
</tr>
<tr id="row1">
<td></td>
<td></td>
</tr>
<tr id="row2">
<td></td>
<td></td>
</tr>
<tr id="row3">
<td></td>
<td></td>
</tr>
</table>
<p></p>
<button class="button" id="submit" title="Click the button to submit your guess">January 2012</button>
<div>
<input class="slider" type="range" min="0" max="10000000" value="0" class="slider" id="slider"
width="100%" title="Move the slider and guess the stream date">
</div>
</div>
</div>
</body>
<div class="overlay-background" id="overlayBackground">
<div class="overlay" id="overlay">
<p id="resultText">Jermdle complete</p>
<textarea readonly id="result"></textarea>
<button class="button" id="share" title="Click the button to copy the results to the clipboard">Copy results to clipboard (Share)</button>
</div>
</div>
</html>