-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·77 lines (73 loc) · 3.38 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Memory Game</title>
<meta name="description" content="">
<link rel="stylesheet prefetch" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css">
<link rel="stylesheet prefetch" href="https://fonts.googleapis.com/css?family=Coda">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M"
crossorigin="anonymous">
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<div class="modal fade" id="you-won-modal" tabindex="-1" role="dialog" aria-labelledby="you-won-modal" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content you-won-modal">
<h2 class="title" id="myModalLabel">You won!</h2>
<div class="modal-body">
<img class="trophy-img" src="img/trophy.png" alt="1st place trophy">
<p>You have improved your memory skills by 1,0345%!</p>
<p>(font: ACME Ltda.)</p>
<hr>
<p><strong>Here's you score:</strong></p>
<div id="score-resume" class="container">
<div class="row score-row">
<div id="modal-total-moves" class="col">Moves</div>
<div id="modal-star-rating" class="col">Star rating</div>
<div id="modal-total-time" class="col">in 2min 40s</div>
</div>
</div>
</div>
<div class="modal-footer">
<button id="modal-cancel" class="btn close-btn">Close</button>
<button id="play-again-modal" class="btn play-again-btn restart-game">Play again</button>
</div>
</div>
</div>
</div>
<div id="memory-game-main-div" class="container">
<header>
<h1>Memory Game</h1>
</header>
<div id="score-panel-section" class="score-panel row">
<div class="col-4">
<div id="star-line-moves-div" class="inline">
<span id="moves-counter" data-moves="0" class="moves">0 Moves</span>
</div>
</div>
<div class="col-4">
<div class="row timelapsed">
<div class="col-8 pull-right">Time elapsed:</div>
<div id="time-elapsed" class="col-4 pull-left"></div>
</div>
</div>
<div class="col-4">
<div id="restart-game" class="restart restart-game">
<i id="restart-icon" class="fa fa-repeat"></i> Restart Game
</div>
</div>
</div>
</div>
<!-- Bootstrap JS rendering -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js" integrity="sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/js/bootstrap.min.js" integrity="sha384-h0AbiXch4ZDo7tp9hKZ4TsHbi047NrKGLO3SEJAg45jXxnGIfYzk4Si90RDIqNm1"
crossorigin="anonymous"></script>
<script src="js/game-over.js"></script>
<script src="js/counters.js"></script>
<script src="js/app.js"></script>
</body>
</html>