-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (93 loc) · 3.3 KB
/
index.html
File metadata and controls
93 lines (93 loc) · 3.3 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
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="shortcut icon" href="favicon.ico">
<link rel="stylesheet" type="text/css" href="style.css">
<title>Minesweeper</title>
<script type="text/javascript" src="src/minesweeper.js"></script>
<script type="text/javascript" src="src/main.js"></script>
</head>
<body>
<div id="options">
<table>
<tr>
<th></th>
<th>Width</th>
<th>Height</th>
<th>Mines</th>
</tr><tr>
<td>
<span>
<input id="Beginner" type="radio" name="radios" checked="checked">
<label for="Beginner">Beginner</label>
</span>
</td>
<td>9</td>
<td>9</td>
<td>10</td>
</tr><tr>
<td>
<span>
<input id="Intermediate" type="radio" name="radios">
<label for="Intermediate">Intermediate</label>
</span>
</td>
<td>16</td>
<td>16</td>
<td>40</td>
</tr><tr>
<td>
<span>
<input id="Expert" type="radio" name="radios">
<label for="Expert">Expert</label>
</span>
</td>
<td>30</td>
<td>16</td>
<td>99</td>
</tr><tr>
<td>
<span>
<input id="Custom" type="radio" name="radios">
<label for="Custom">Custom</label>
</span>
</td>
<td><input type="text" id="width" size="3" value="30"></input></td>
<td><input type="text" id="height" size="3" value="24"></input></td>
<td><input type="text" id="mines" size="3" value="180"></input></td>
</tr><tr>
<td>Zoom:</td>
<td>
<span>
<input id="Zoom100" type="radio" name="zoom" checked="checked">
<label for="Zoom100">100%</label>
</span>
</td>
<td>
<span>
<input id="Zoom150" type="radio" name="zoom">
<label for="Zoom150">150%</label>
</span>
</td>
<td>
<span>
<input id="Zoom200" type="radio" name="zoom">
<label for="Zoom200">200%</label>
</span>
</td>
</tr>
</table>
</div>
<canvas id="canvas" width="800" height="600">
<div style="text-align: center; vertical-align: middle">
Your browser don't support canvas, please download
<a href="https://www.google.ru/intl/ru/chrome/browser/" target="_blank">
chrome
</a> or <a href="http://www.mozilla.org/ru/firefox/new/" target="_blank">
firefox
</a>
</div>
</canvas>
</body>
</html>