-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (87 loc) · 3.06 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
85
86
87
88
89
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>StreamBingo | Play Bingo with your livestreamer</title>
<meta name="description" content="Play Bingo on livestream with your favourite streamers!">
<meta name="author" content="mattytwoshoes">
<meta property="og:title" content="StreamBingo.Party">
<meta property="og:type" content="website">
<meta property="og:description" content="Play Bingo on livestream with your favourite streamers!">
<link rel="icon" href="/favicon.ico?" type="image/x-icon">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<link rel="stylesheet" href="styles.css?v=1.0">
</head>
<body>
<header>
<h1>Stream Bingo</h1>
</header>
<main>
<div id="bingoBoardWrapper" class="boardWrapper">
<table id="bingoBoard" class="board">
<tr>
<td data-position=0></td>
<td data-position=1></td>
<td data-position=2></td>
<td data-position=3></td>
<td data-position=4></td>
</tr>
<tr>
<td data-position=5></td>
<td data-position=6></td>
<td data-position=7></td>
<td data-position=8></td>
<td data-position=9></td>
</tr>
<tr>
<td data-position=10></td>
<td data-position=11></td>
<td data-position=12 id="freeTile" class="marked">⭐</td>
<td data-position=13></td>
<td data-position=14></td>
</tr>
<tr>
<td data-position=15></td>
<td data-position=16></td>
<td data-position=17></td>
<td data-position=18></td>
<td data-position=19></td>
</tr>
<tr>
<td data-position=20></td>
<td data-position=21></td>
<td data-position=22></td>
<td data-position=23></td>
<td data-position=24></td>
</tr>
</table>
</div>
<div id="noBoard" class="noboard">
<div class="instructions">
<p>These are the Stream Bingo rules:
<ul>
<li>Bingo requires 5 highlighted tiles</li>
<li>The 5 highlighted tiles must be adjacent</li>
<li>The row of 5 must be vertical or horizontal</li>
</ul>
</p>
<div class="spacer"></div>
<p>If you're seeing this message...</p>
<p>...as a <span class="streamer">streamer</span>, use the following button to generate a board randomly.</p>
<button onclick="generateBoard()">generate</button>
<br><br>
<p>...as a <span class="user">viewer</span>, you need to ask your streamer for a board to play with!</p>
</div>
</div>
</main>
<footer>
<h2>
Developed by <a target="_blank" href="https://github.com/matthewbrandt/streambingo.party">mattytwoshoe<span>s</span></a>
<br>
<div class="version">v1.0.1-backseat</div>
</h2>
</footer>
<script src="app.js"></script>
</body>
</html>