-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (72 loc) · 2.95 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Guess The Number</title>
<link rel="stylesheet" href="index-style.css">
<link rel="shortcut icon" type="image/x-icon" href="assets/favicon.png">
<script type="text/javascript" src="generateNew.js"></script>
<script type="text/javascript" src="interactions.js"></script>
</head>
<body onload="generateNew()">
<!--Intro-->
<div id="intro" class="intro">
<h1>GUESS THE NUMBER</h1>
<span>By Ibrahim Bagalwa</span>
</div>
<!--Header-->
<div class="header">
<span id="headerLabel">CAN YOU GUESS THE NUMBER?</span>
</div>
<!--Lock-->
<div class="lock-animation" id="lockAnimation">
<div class="lock-base">
<!--Enter Code-->
<input type="number" id="guess1" autofocus="autofocus" oninput="onCodeInput(1)" onkeydown="return event.keyCode !== 69" placeholder="0">
<input type="number" id="guess2" autofocus="autofocus" oninput="onCodeInput(2)" onkeydown="return event.keyCode !== 69" placeholder="0">
<input type="number" id="guess3" autofocus="autofocus" oninput="onCodeInput(3)" onkeydown="return event.keyCode !== 69" placeholder="0">
</div>
</div>
<!--Hints-->
<div class="hint-wrapper">
<section class="hint">
<section class="hint-top">
<span id="hint1">0 0 0</span>
</section>
<span class="hint-text" style="color: #4CAF50">2 CORRECT BUT<br />WRONG PLACED</span>
</section>
<section class="hint">
<section class="hint-top">
<span id="hint2">0 0 0</span>
</section>
<span class="hint-text" style="color: #CCDB39">1 CORRECT AND<br />WELL PLACED</span>
</section>
<section class="hint">
<section class="hint-top">
<span id="hint3">0 0 0</span>
</section>
<span class="hint-text" style="color: #FEC007">1 CORRECT BUT<br />WRONG PLACED</span>
</section>
<section class="hint">
<section class="hint-top">
<span id="hint4">0 0 0</span>
</section>
<span class="hint-text" style="color: #FEC007">1 CORRECT BUT<br />WRONG PLACED</span>
</section>
<section class="hint">
<section class="hint-top">
<span id="hint5">0 0 0</span>
</section>
<span class="hint-text" style="color: #F44336">NOTHING IS<br />CORRECT</span>
</section>
</div>
<!--Continue Button-->
<button onclick="generateNew()" id="continueButton" class="continue-button">Continue</button>
<!--Footer-->
<footer class="footer">
<span id="answerLabel" onclick="revealAnswer()">Reveal Answer</section>
</footer>
</body>
</html>