-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (41 loc) · 1.68 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Simon Game</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.0/jquery-ui.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Bungee+Shade|Kelly+Slab" rel="stylesheet" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css" rel="stylesheet" />
<link rel="stylesheet" href="style.css" />
</head>
<body onLoad="disablePlayerInput()">
<h1 class="title">Simon Game </h1>
<div class="byline">by Nigel</div>
<div class="wrapper">
<div class="circle">
<div class="half">
<div class="sector topleft red" id="0">
</div>
<div class="sector topright green" id="1">
</div>
</div>
<div class="half">
<div class="sector bottomleft blue" id="2">
</div>
<div class="sector bottomright yellow" id="3">
</div>
</div>
<div class="game-control">
<h3 class="game-status">Simon Game</h3>
<p class="step">Step:
<span class="step-count">0</span>
</p>
<button class="game-start" onClick="startGame()" id="start">Start</button>
<input id="strict-mode" type="checkbox" name="strict" value="Strict" onClick="mode()">Strict
</div>
</div>
</div>
</body>
<script src="script.js"></script>
</html>