-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (83 loc) · 2.66 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
89
90
91
92
93
94
95
96
<html lang="en">
<head>
<title>Rhino-Ski</title>
<link rel="stylesheet" type="text/css" href="dist/css/southteams-ski.min.css">
<link href="https://fonts.googleapis.com/css?family=Lato:900" rel="stylesheet">
<link rel="shortcut icon" href="dist/img/favicon.ico" type="image/x-icon">
<link rel="icon" href="dist/img/favicon.ico" type="image/x-icon">
<base href="/" />
<!--<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.4/lodash.min.js"></script>-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type="text/javascript" src="dist/js/southteams-ski.min.js"></script>
</head>
<body>
<div id="loading">Loading game...</div>
<!--Panel-->
<div class="view" id="panel">
<ul>
<li></li>
<li></li>
<li>Panel</li>
<li>Pause [ESC]</li>
<li>Jump [SPACE]</li>
<li>Your score <span class="score"></span></li>
<li><span class="best-score"></span></li>
<li>Speed <span class="speed"></span> km/h</li>
<li>Distance: <span id="distance"></span>km</li>
</ul>
</div>
<!--Pause Container-->
<div id="messageOnPause" class="message">
<div class="message-header">
<h1>Rhino-Ski says</h1>
</div>
<div class="message-body">
<h2>Hey! Rhino-Ski Game is paused</h2>
<h3>Your score is <span class="score"></span></h3>
<h4>Continue playing with Rhino-Ski!</h4>
<button id="pauseOff">Continue</button>
</div>
</div>
<!--Welcome Container-->
<div id="welcome" class="message">
<div class="message-header">
<h1>Hey! Welcome to Rhino-Ski Game</h1>
</div>
<div class="message-body">
<h3 class="best-score"></h3>
<h3>Remember the rules</h3>
<ul>
<li>The skier moves with the arrow keys</li>
<li>The skier can jump just for fun, but if he jumps over ramps or stones you'll obtain extra points!</li>
<li>The speed is growing along the time</li>
</ul>
<button id="ok">Ok</button>
</div>
</div>
<!--Game Over Container-->
<div id="messagegameOver" class="message">
<div class="message-header">
<h1>Rhino-Ski says</h1>
</div>
<div class="message-body">
<h2>Ups! Game Over :(</h2>
<h2>Your current score <span class="score"></span></h2>
<h3 class="best-score"></h3>
<h4>Continue playing with Rhino-Ski!</h4>
<button id="restart">Restart</button>
</div>
</div>
<!--Error Container-->
<div id="error" class="message">
<div class="message-header">
<h1>Rhino-Ski says</h1>
</div>
<div class="message-body">
<h2>Ups! There was and error :(</h2>
<h3 class="best-score"></h3>
<h4 id="messageError"></h4>
</div>
</div>
<div class="expression"></div>
</body>
</html>