-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
144 lines (133 loc) · 5.15 KB
/
index.html
File metadata and controls
144 lines (133 loc) · 5.15 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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!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">
<title>Game</title>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body>
<!-- Init game -->
<div class="wrapper-init-game">
<a href="#" class="button-init-game" id="button-init-game">START</a>
</div>
<!-- !-!-! -->
<!-- Indicate name -->
<div class="outer-wrapper-indicate-name" id="outer-wrapper-indicate-name">
<div class="inner-wrapper-indicate-name">
<div class="indicate-name__tittle">
<h2>
<span>N</span>
<span>A</span>
<span>M</span>
<span>E</span>
<span>:</span>
</h2>
</div>
<div class="indicate-name__input">
<input type="text" id="indicate-name__input" placeholder="Enter your name:">
</div>
</div>
</div>
<!-- !-!-! -->
<!-- Choose level -->
<div class="outer-wrapper-choose-level" id="outer-wrapper-choose-level">
<div class="inner-wrapper-choose-level">
<div class="choose-level__container">
<button id="levelEasy" class="level">Easy</button>
</div>
<div class="choose-level__container">
<button id="levelNormal" class="level">Normal</button>
</div>
<div class="choose-level__container">
<button id="levelHard" class="level">Hard</button>
</div>
</div>
</div>
<!-- !-!-! -->
<!-- Easy menu -->
<div class="wrapper-easy-menu" id="wrapper-easy-menu">
<a href="#" id="playEasy" class="play">PLAY</a>
</div>
<!-- !-!-! -->
<!-- Common menu -->
<div class="wrapper-common-menu" id="wrapper-common-menu">
<a href="#" id="playCommon" class="play">PLAY</a>
</div>
<!-- !-!-! -->
<!-- Hard menu -->
<div class="outer-wrapper-hard-menu" id="outer-wrapper-hard-menu">
<div class="inner-wrapper-hard-menu">
<div class="hard-menu-play">
<a href="#" id="playHard" class="play">PLAY</a>
</div>
<div class="hard-menu-leaderboard">
<a href="#" id="leaderboard" class="leaderboard">LEADERBOARD</a>
</div>
<div class="hard-menu-leaderboard">
<a href="#" id="backFromLeaderBoardToMenu" class="play">BACK</a>
</div>
</div>
</div>
<!-- !-!-! -->
<!-- Easy play field -->
<div class="outer-wrapper-easy-play-field" id="outer-wrapper-easy-play-field">
<div class="inner-wrapper-easy-play-field">
<div class="easy-play-field__table" id="easy-play-field__table"></div>
<div class="easy-play-field__buttons">
<a href="#" id="backLevelsFromEasy" class="backLevels">Back</a>
<a href="#" id="easyRepeat" class="easyRepeat">Repeat</a>
</div>
</div>
</div>
<!-- !-!-! -->
<!-- Common play field -->
<div class="outer-wrapper-common-play-field" id="outer-wrapper-common-play-field">
<div class="inner-wrapper-common-play-field">
<div class="common-play-field__time">
<p id="tittleTimeCommon">Remains only: <span id="time_common"></span> seconds</p>
</div>
<div class="common-play-field__table" id="common-play-field__table"></div>
<div class="common-play-field__buttons">
<a href="#" id="backLevelsFromCommon" class="backLevels">Back</a>
<a href="#" id="commonRepeat" class="commonRepeat">Repeat</a>
</div>
</div>
</div>
<!-- !-!-! -->
<!-- Hard play field -->
<div class="outer-wrapper-hard-play-field" id="outer-wrapper-hard-play-field">
<div class="inner-wrapper-hard-play-field">
<div class="hard-play-field__time">
<p id="tittleTimeHard">Your time: <span id="time_hard"></span></p>
</div>
<div class="hard-play-field__table" id="hard-play-field__table"></div>
<div class="hard-play-field__buttons">
<a href="#" id="backLevelsFromHard" class="backLevels">Back</a>
<a href="#" id="hardRepeat" class="hardRepeat">Repeat</a>
</div>
</div>
</div>
<!-- !-!-! -->
<div class="outer-wrapper-leaderboard" id="outer-wrapper-leaderboard">
<div class="inner-wrapper-leaderboard">
<div class="leaderboard__tittle">
<h1>LEADERBOARD:</h1>
</div>
<div class="leaderboard__result">
<div class="leaderboard-ol-names">
<ol id="leaderboard__result__name">
</ol></div>
<div class="leaderboard-ul-time">
<ul id="leaderboard__result__time"></ul>
</div>
</div>
<div class="leaderboard__result__button">
<a href="#" id="backLevelsFromLeaderboard" class="backLevels">Back</a>
</div>
</div>
</div>
</body>
</html>