-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
93 lines (87 loc) · 3.7 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
90
91
92
93
<!DOCTYPE html>
<html>
<!-- https://codepen.io/fannietaeyang/pen/xOQzvq -->
<head>
<link rel="stylesheet" href="style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2canvas/0.4.1/html2canvas.js"></script>
<script type="text/javascript" src="FileSaver.js" ></script>
</head>
<body>
<script src="make_bingo.js"></script>
<script>
window.take = function() {
html2canvas(document.querySelector("#bingo-card"), {
onrendered: function(canvas) {
canvas.toBlob(function(blob) {
saveAs(blob, "gaybingo.png");
});
}
});
};
</script>
<h1>Welcome to ✨🌈 GAY BINGO 🌈✨</h1>
<p>Click a square to toggle it. Refresh page for a new card. Click the button below to save your card as a png.</p>
<p>Want to contribute some gay shit? <a href="https://github.com/maiamcc/gay_bingo" target="_blank">Find us on GitHub</a> (make a PR or open an issue).</p>
<div id="bingo-select">
<h3 class="inline">Pick your bingo board:</h3>
<form id="board-select-form" class="inline">
<select id="board-select">
</select>
</form>
</div>
<div id="buttons">
<button id="save-btn" onclick="take()">Save as PNG</button>
<button id="new-board-btn">New board</button> <!-- fn bound in make_bingo.js -->
</div>
<div id="bingo-card">
<div class="wrapper">
<h2 class="bingo-title">Gay Bingo</h2>
<table class="gradient">
<tr>
<th>B</th>
<th>I</th>
<th>N</th>
<th>G</th>
<th>O</th>
</tr>
<tr>
<td id="square0"> </td>
<td id="square5"> </td>
<td id="square10"> </td>
<td id="square14"> </td>
<td id="square19"> </td>
</tr>
<tr>
<td id="square1"> </td>
<td id="square6"> </td>
<td id="square11"> </td>
<td id="square15"> </td>
<td id="square20"> </td>
</tr>
<tr>
<td id="square2"> </td>
<td id="square7"> </td>
<td id="free"><p>LIKES GORLS!!!</p><p>(FREE)</p></td>
<td id="square16"> </td>
<td id="square21"> </td>
</tr>
<tr>
<td id="square3"> </td>
<td id="square8"> </td>
<td id="square12"> </td>
<td id="square17"> </td>
<td id="square22"> </td>
</tr>
<tr>
<td id="square4"> </td>
<td id="square9"> </td>
<td id="square13"> </td>
<td id="square18"> </td>
<td id="square23"> </td>
</tr>
</table>
<p>By <a href="https://github.com/maiamcc" target="_blank">Maia McCormick</a>: http://bit.ly/gay_bingo</p>
</div>
</div>
</body>
</html>