-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (60 loc) · 2.43 KB
/
index.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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-store">
<meta http-equiv="expires" content="0">
<link rel="stylesheet" href="./index.css">
<title>Flight Battle - Conway Version</title>
<script src="https://code.jquery.com/jquery-3.6.0.js"></script>
<script src="./index.js" type="text/javascript"></script>
</head>
<body class="index-bkimg">
<div class="logcon">
////// Console Output //////
</div>
<div class="logcon">
Date:
<span id="date" class="date">
<span id="hh">--</span>:<span id="mm">--</span>:<span id="ss">--</span>
<span id="MM">??</span>-<span id="DD">??</span>-<span id="YYYY">????</span>
</span>
</div>
<div class="logcon">
Game Section Status:
<span id="game-status" class="l1hide">Disabled</span>
</div>
<div class="logcon">
<span id="log1" style="color:#EBF6F700"> Loading file: pattern_lib.json </span>
<span id="log1_5" style="color: #C7DC6800;">Done</span>
</div>
<div class="logcon">
<span id="log2" style="color:#EBF6F700"> Loading file: stage_lib.json... </span>
<span id="log2_5" style="color: #C7DC6800;">Done</span>
</div>
<div class="logcon">
<span id="log3" style="color:#EBF6F700"> Loading file: lifegame.js... </span>
<span id="log3_5" style="color: #C7DC6800;">Done</span>
</div>
<div id="enjoy" class="logcon" style="color: #38A1DB00;">
-------------------
Enjoy your journey!
-------------------
</div>
<div class="subtitle middle" style="margin-top: 100px;"> Step into the deep space </div>
<div class="title middle" style="margin-top: 20px;">Con-Way</div>
<div class="subtitle middle" style="margin-top: 5px;"> Conway Game of Life </div>
<div class="btn" style="margin-top: 80px;">
<button id="stabtn" class="stabtn" onclick="stabtnClick()" disabled="true">
> GAME START <
</button>
</div>
<div class="btn" style="margin-top: 40px;">
<button id="cwinfo" class="cwinfo" onclick="cwinfoClick()">
What is Conway
</button>
</div>
</body>
</html>