-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (84 loc) · 3.79 KB
/
index.html
File metadata and controls
84 lines (84 loc) · 3.79 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>スーパービンゴ シミュレーター</title>
<link rel="stylesheet" href="sbsim.css" />
<script src="mt19937ar.js"></script>
<script src="sbsim.js"></script>
</head>
<body>
<h1>スーパービンゴ シミュレーター</h1>
<table>
<tr>
<th>人数</th>
<td>
<select id="numPlayer" onchange="onNumPlayerChanged()">
<option value="5">5</option>
<option value="10">10</option>
<option value="20">20</option>
</select>
</td>
</tr>
<tr>
<th>BET</th>
<td><select id="bet"></select></td>
</tr>
<tr>
<th>チャンス(自分)</th>
<td>
<select id="chanceMode">
<option value="0">使わない</option>
<option value="1">最短で使う</option>
<option value="2">最後に使う</option>
<option value="3" selected>リーチで使う</option>
<option value="4">スーパーリーチで使う</option>
</select>
</td>
</tr>
<tr>
<th>チャンス(他人)</th>
<td>
<select id="chanceModeOthers">
<option value="0">使わない</option>
<option value="1">最短で使う</option>
<option value="2">最後に使う</option>
<option value="3" selected>リーチで使う</option>
<option value="4">スーパーリーチで使う</option>
</select>
</td>
</tr>
<tr>
<th><button onclick="onStart(false)">指定数回す</button></th>
<td><input id="times" type="text" size="8" value="1000" /></td>
</tr>
<tr>
<th colspan="2"><button onclick="onStart(true)">スーパービンゴが出るまで回す</button></th>
</tr>
</table>
<table class="result">
<tr><th>回数</th><td id="resultTimes">0</td></tr>
<tr><th>スーパービンゴ</th><td id="superBingo">0</td><td id="superBingoPer">-</td></tr>
<tr><th>ビンゴ</th><td id ="bingo">0</td><td id="bingoPer">-</td></tr>
<tr><th>1位</th><td id="rank1">0</td><td id="rank1Per">-</td></tr>
<tr><th>2位</th><td id="rank2">0</td><td id="rank2Per">-</td></tr>
<tr><th>3位</th><td id="rank3">0</td><td id="rank3Per">-</td></tr>
<tr><th>4位</th><td id="rank4">0</td><td id="rank4Per">-</td></tr>
<tr><th>圏外</th><td id="norank">0</td><td id="norankPer">-</td></tr>
<tr><th>BET</th><td id="totalBet">0</td></tr>
<tr><th>獲得</th><td id="prize">0</td></tr>
<tr><th>所持金</th><td id="total">0</td></tr>
<tr><th>所持金(最小)</th><td id="totalMin">0</td></tr>
<tr><th>所持金(最大)</th><td id="totalMax">0</td></tr>
</table>
<a id="link" target="_blank"></a>
<table class="message">
<tr><td id="message"></td></tr>
</table>
<ul>
<li>できるだけ再現できるようにしていますが、正しさは保証できません。</li>
<li>リーチ・スーパーリーチでチャンスを使う条件が揃わない場合は、最後に使います。</li>
<li>IE9では動作しません。</li>
</ul>
</body>
</html>