-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhome.html
82 lines (82 loc) · 3.24 KB
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<script src="./content/jquery.js"></script>
<script src="./content/lodash.js"></script>
<link rel="stylesheet" href="./content/index.css">
<link rel="stylesheet" href="./content/semantic/semantic.min.css">
<script src="./content/semantic/semantic.min.js"></script>
<script src="./content/index.js"></script>
<title>Color Game</title>
</head>
<body>
<div class="ui container margin-top-fifty">
<div class="ui center aligned segments">
<div class="ui segment">
<div class="ui attached message">
<div class="top header text-center"></div>
</div>
<div class="ui centered grid margin-no" style="height: calc(100vh - 450px)">
<div id="animationElement" class="middle aligned row" style="height: 100%">
<!-- animation div -->
<div id="1" class="red column square margin-right-ten">
</div>
<div id="2" class="blue column square margin-right-ten">
</div>
<div id="3" class="green column square margin-right-ten">
</div>
<div id="4" class="yellow column square">
</div>
</div>
<!-- animation div -->
<!-- clickable div -->
<div id="blockButtons" class="middle aligned row" style="height: 100%; display: none;">
<div id="1" class="red column square margin-right-ten cursor-pointer">
</div>
<div id="2" class="blue column square margin-right-ten cursor-pointer">
</div>
<div id="3" class="green column square margin-right-ten cursor-pointer">
</div>
<div id="4" class="yellow column square cursor-pointer">
</div>
</div>
<!-- clickable div -->
</div>
<div class="ui bottom attached message messageBox text-center" style="display: none;"></div>
</div>
<div class="ui center aligned segment">
<button class="ui blue button play">
Play
</button>
<button class="ui blue button try-again disabled">
Try Again
</button>
<button class="ui green button submit disabled">
Submit
</button>
<button class="ui red button reset-game">
Reset Game
</button>
</div>
<div class="ui center aligned segment">
<div class="ui info message">
<div class="header">
How to play?
</div>
<ul class="list">
<li>Click on "Play" button to start the game.</li>
<li>Notice the coloured boxes. It will get hightlight.</li>
<li>After all sequence of box hightlighting get finish you will have to click the boxes as it was highlighting to select.</li>
<li>After select click on the "Submit" button to submit your answer.</li>
<li>After completing successfully each level you can get promote to next level</li>
<li>If you unable to submit the current answer, the game will reset to level 1.</li>
</ul>
</div>
</div>
</div>
</div>
</body>
</html>