-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
69 lines (60 loc) · 2.85 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
<!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>Number-Memory</title>
<link rel="stylesheet" href="./assets/css/styles.css">
</head>
<body>
<!--Onur Işık-->
<div class="GameStart">
<div id="gameStart-items" style="text-align: center;">
<div class="GameStart__box">
<div class="GameStart__first">
<div>1</div>
<div>3</div>
</div>
<div class="GameStart__second">
<div>2</div>
<div>?</div>
</div>
</div>
<h1 class="GameStart__h1" >Number Memory</h1>
<p class="GameStart__h2">The average person can remember 7 numbers at once.Can you do more?</p>
</div>
<h1 style="display: none;text-align: center;font-size: 148px;" id="text"></h1>
<div id="inputBox" style="display: none;text-align: center;">
<h2>Sayıyı Hatırlıyor Musun ?</h2>
<h4>lütfen tamama basınız</h4>
<input type="text" class="nextLevelInput" id="input" style="width: 1000px;height: 70px;" >
</div>
<br>
<button onclick="gameStart()" id="btn_gameStart" class="GameStart__button">Start</button>
<button onclick="nextLevel()" style="display: none;text-align: center;" class="nextLevel" id="nextLevel">Onayla</button>
<div id="gameover" style="display: none;">
<p style="margin-bottom: 20px;" id="GameOver--P">Nasıl karşılaştırdığınızı görmek için puanınızı kaydedin</p>
<button id="kaydet">skoru kaydet</button>
<button onclick="restartGame()" id="tekrar">tekrar oyna</button>
</div>
</div>
<!--Muhammet Çelikci-->
<div class="GameInfo">
<div class="StaticsBox">Statistics</div>
<div class="GameInformatıon">
<h1>Test Hakkında</h1>
<p>Ortalama bir kişi yalnızca 7 basamaklı sayıları güvenilir bir şekilde hatırlayabilir, ancak anımsatıcı
teknikleri kullanarak çok daha iyisini yapmak mümkündür. Bazı yararlı bağlantılar aşağıda verilmiştir.
</p>
<p><a href="https://en.wikipedia.org/wiki/Mnemonic_major_system">Mnemonic major system</a></p>
<p><a href="https://en.wikipedia.org/wiki/Dominic_system">Dominic system</a></p>
<p><a href="https://en.wikipedia.org/wiki/Katapayadi_system">Katapayadi system</a></p>
<p><a href="https://en.wikipedia.org/wiki/Mnemonic">Mnemonic devices</a></p>
</div>
</div>
<!--Can Tarakçı-->
<div class="OtherGameInfo"></div>
</body>
</html>
<script src="./assets/js/app.js"></script>