-
Notifications
You must be signed in to change notification settings - Fork 0
/
bingo.html
113 lines (113 loc) · 3.45 KB
/
bingo.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html manifest="bingo.appcache" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>BINGO</title>
<meta name="viewport" content="user-scalable=no, width=600px"/>
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="white" />
<link rel="apple-touch-icon" href="bingo.png"/>
<link rel="stylesheet" href="bingo.css" type="text/css" media="screen, mobile" title="main" charset="utf-8">
<script type="text/javascript" src="bingo.js"></script>
</head>
<body onload="init()">
<table>
<tr>
<th>B</th>
<th>I</th>
<th>N</th>
<th>G</th>
<th>O</th>
</tr>
<tr>
<td>
<input class="ButtonOff" type="button" id="b1" value="B1" onclick="toggle('b1');"/>
</td>
<td>
<input class="ButtonOff" type="button" id="i1" value="I1" onclick="toggle('i1');"/>
</td>
<td>
<input class="ButtonOff" type="button" id="n1" value="N1" onclick="toggle('n1');"/>
</td>
<td>
<input class="ButtonOff" type="button" id="g1" value="G1" onclick="toggle('g1');"/>
</td>
<td>
<input class="ButtonOff" type="button" id="o1" value="O1" onclick="toggle('o1');"/>
</td>
</tr>
<tr>
<td>
<input class="ButtonOff" type="button" id="b2" value="B2" onclick="toggle('b2');"/>
</td>
<td>
<input class="ButtonOff" type="button" id="i2" value="I2" onclick="toggle('i2');"/>
</td>
<td>
<input class="ButtonOff" type="button" id="n2" value="N2" onclick="toggle('n2');"/>
</td>
<td>
<input class="ButtonOff" type="button" id="g2" value="G2" onclick="toggle('g2');"/>
</td>
<td>
<input class="ButtonOff" type="button" id="o2" value="O2" onclick="toggle('o2');"/>
</td>
</tr>
<tr>
<td>
<input class="ButtonOff" type="button" id="b3" value="B3" onclick="toggle('b3');"/>
</td>
<td>
<input class="ButtonOff" type="button" id="i3" value="I3" onclick="toggle('i3');"/>
</td>
<td>
<img id="free" src="bingox.png" width="108" height="108" alt="bingox" />
</td>
<td>
<input class="ButtonOff" type="button" id="g3" value="G3" onclick="toggle('g3');"/>
</td>
<td>
<input class="ButtonOff" type="button" id="o3" value="O3" onclick="toggle('o3');"/>
</td>
</tr>
<tr>
<td>
<input class="ButtonOff" type="button" id="b4" value="B4" onclick="toggle('b4');"/>
</td>
<td>
<input class="ButtonOff" type="button" id="i4" value="I4" onclick="toggle('i4');"/>
</td>
<td>
<input class="ButtonOff" type="button" id="n4" value="N4" onclick="toggle('n4');"/>
</td>
<td>
<input class="ButtonOff" type="button" id="g4" value="G4" onclick="toggle('g4');"/>
</td>
<td>
<input class="ButtonOff" type="button" id="o4" value="O4" onclick="toggle('o4');"/>
</td>
</tr>
<tr>
<td>
<input class="ButtonOff" type="button" id="b5" value="B5" onclick="toggle('b5');"/>
</td>
<td>
<input class="ButtonOff" type="button" id="i5" value="I5" onclick="toggle('i5');"/>
</td>
<td>
<input class="ButtonOff" type="button" id="n5" value="N5" onclick="toggle('n5');"/>
</td>
<td>
<input class="ButtonOff" type="button" id="g5" value="G5" onclick="toggle('g5');"/>
</td>
<td>
<input class="ButtonOff" type="button" id="o5" value="O5" onclick="toggle('o5');"/>
</td>
</tr>
<tr>
<td colspan="5">
banner
</td>
</tr>
</table>
</body>
</html>