-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontrols.html
123 lines (118 loc) · 5.51 KB
/
controls.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>A Moth's Tale</title>
<link rel="icon" type="image/png" href="favicon.png">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script type="text/JavaScript" src="slider.js"></script>
<link rel="stylesheet" type="text/css" href="navbar.css">
<script src="https://code.jquery.com/jquery-3.3.1.js"></script>
</head>
<body onload="showSlides(1)">
<header>
<nav>
<div class="menu-icon">
<i class="fa fa-bars fa-2x"></i>
</div>
<div class="menu">
<ul>
<li><a href="index.html#">Home</a></li>
<li><a href="howToPlay.html">How To Play</a></li>
<li><a href="controls.html">Controls</a></li>
<li><a href="enemies.html">Lights and Enemies</a></li>
<li><a href="download.html">Download</a></li>
<li><a href="speedruns.html">Speedruns</a></li>
<li><a href="about.html">About Us</a></li>
</ul>
</div>
</nav>
</header>
<div class="main">
<div align="center">
<br>
<!-- controls-->
<h1>Controls</h1>
<!-- Slideshow-->
<div class="slideshow-container" style="width:80%">
<!-- moving Slide-->
<div class="slide">
<div class="numbertext">1 / 5</div>
<div class="text" style="font-size: 145%">Moving</div>
<img src="img/Walk.webp" style="width:50%"> <!-- add moving image-->
<div class="text">You move with 'a' and 'd'.</div>
</div>
<!-- jumping Slide-->
<div class="slide">
<div class="numbertext">2 / 5</div>
<div class="text" style="font-size: 145%">Jumping</div>
<img src="img/Jumping.webp" style="width:50%"> <!-- add jumping image-->
<div class="text">
You jump with 'space'. You have three wing flaps, therefore you can jump three times in midair.<br>
Unfortunately you can't fly during rainy days.
</div>
</div>
<!-- sprinting Slide-->
<div class="slide">
<div class="numbertext">3 / 5</div>
<div class="text" style="font-size: 145%">Sprinting</div>
<img src="img/Sprint.webp" style="width:50%"> <!-- add sprinting image-->
<div class="text">You can sprint by holding 'shift' and moving.</div>
</div>
<!-- wall walking Slide-->
<div class="slide">
<div class="numbertext">4 / 5</div>
<div class="text" style="font-size: 145%">Climbing</div>
<img src="img/WallWalking.webp" style="width:50%"> <!-- add wall walking image-->
<div class="text">You can latch onto certain walls and climb them with 'w' and 's'. Most of them are covered in moss.</div>
</div>
<!-- gliding Slide-->
<div class="slide">
<div class="numbertext">5 / 5</div>
<div class="text" style="font-size: 145%">Gliding</div>
<img src="img/Gliding.webp" style="width:50%"> <!-- add gliding image-->
<div class="text">Holding 'space' you can glide in the air.</div>
</div>
</div>
<br>
<!-- Next and previous buttons -->
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
<footer>
<hr class="horizontal line">
<!-- credits-->
<table>
<tr>
<h1><b>Credits</b></h1>
</tr>
<tr>
<td>Achilleas Tagalidis</td>
</tr>
<tr>
<td>Alexander Ritter</td>
</tr>
<tr>
<td>Elias Altmann</td>
</tr>
<tr>
<td>Jason Pywell</td>
</tr>
<tr>
<td>Nicole Bretz</td>
</tr>
<tr>
<td>Regine Lendway</td>
</tr>
<tr>
<td>Samuel Scheer</td>
</tr>
</table>
<p>Project for Praktikum Computerspiele & Visual Effects / Computergrafik at the Eberhard Karl University of Tübingen</p>
</footer>
</div>
</div>
</body>
<script type="text/JavaScript" src="navbar-responsive.js"></script>
</html>