-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSnake.html
70 lines (59 loc) · 1.95 KB
/
Snake.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>SnakeIt!</title>
<script type='text/javascript' src='http://code.jquery.com/jquery-1.9.1.js'></script>
<script type='text/javascript' src='js/snake.js'></script>
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
<div class="snakeOptions">
<h1>Настройки</h1>
<table>
<tr>
<td>
Ширина поля:
</td>
<td>
<input id="sizeX" type="text" value="10"/>
</td>
</tr>
<tr>
<td>
Высота поля:
</td>
<td>
<input id="sizeY" type="text" value="10"/>
</td>
</tr>
<tr>
<td>
Скорость игры :
</td>
<td>
<label><input type="radio" name="gameSpeed" value="500" >Слоупок</label> |
<label><input type="radio" name="gameSpeed" value="300" checked="checked"/>Капитан</label> |
<label><input type="radio" name="gameSpeed" value="100" />Чак </label>
</td>
</tr>
</table>
<input type="button" id="saveOptions" value="Применить настройки"/>
</div>
<div>
<table>
<tr><td>
<table id="tbl">
</table>
</td>
<td>
<div class="cookieContainer"><span>Съедено печенек : </span><span id="cookieCounter" class="cookies">0</span></div>
</td>
</tr>
</table>
</div>
<div class="footer">
Для того чтобы начать играть нажмите любую стрелку на клавиатуре.
</div>
</body>
</html>