This repository was archived by the owner on Jan 8, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (52 loc) · 1.95 KB
/
index.html
File metadata and controls
52 lines (52 loc) · 1.95 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
<html>
<script src="./htmlVersion/jquery-3.6.0.js"></script>
<script src="./htmlVersion/universeManager.js"></script>
<script src="./htmlVersion/universe.js"></script>
<head>
<link rel="stylesheet" href="./htmlVersion/universe.css">
</head>
<body>
<div id="mainMenu" class="sidebar disabled">
<div id="createMenu" class="sidebar-content">
<div class="sidebar-group">
<label for="level">Выберите размер поля</label>
<select id="level" class="round">
<option value="4" selected>16x16</option>
<option value="5">32x32</option>
<option value="6">64x64</option>
<option value="7">128x128</option>
<option value="8">256x256</option>
<option value="9">512x512</option>
<!-- <option value="10">1024x1024</option>
<option value="11">2048x2048</option>
<option value="12">4096x4096</option>
<option value="13">8192x8192</option>
<option value="14">16384x16384</option>
<option value="15">32768x32768</option> -->
</select>
</div>
<button id="createUniverse" class="round">
Создать игровое поле
</button>
</div>
<div id="gameMenu" class="sidebar-content disabled">
<button id="nextGeneration" class="round">
Следующая итерация
</button>
<button id="previousGeneration" class="round">
Предыдущая итерация
</button>
<button id="showHashList" class="round">
Показать хэш лист
</button>
<button id="stopGame" class="round">
Завершить игру
</button>
</div>
</div>
<div id="life" class="game-field">
<div id="quads" class="quad-container">
</div>
</div>
</body>
</html>