-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (92 loc) · 3.22 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html" charset="utf-8"/>
<link rel="stylesheet" type="text/css" href="css/style.css" />
<title>Sheep Survivor</title>
<!-- link to the last version of babylon -->
<script src="js/babylon/babylon.js"></script>
<script src="js/babylon/hand.js"></script>
<script src="js/babylon/babylon.simpleMaterial.js"></script>
<script src="js/babylon/babylon.water.js"></script>
<!-- link to the game logic -->
<script src="js/world.js"></script>
<script src="js/player.js"></script>
<script src="js/food.js"></script>
<script src="js/camera.js"></script>
<script src="js/ui.js"></script>
<script src="js/app.js"></script>
</head>
<body>
<section id="inGame">
<canvas id="renderCanvas"></canvas>
<div id="sleepingDiv">Zzzz</div>
<div id="foodDiv">0</div>
</section>
<section id="controlling">
<div>
<h1>Hilfe</h1>
<h3>Aufgabe</h3>
<span>Sammle mit deinem Schaf alles Essen ein.</span><br />
<h3>Steuerung</h3>
<span>Schaf steuern mit WASD</span><br />
<span>Kamera zoomen mit Mausrad</span><br />
<span>Schlafen legen mit Z</span><br />
<span>"Määh" schreien mit M</span><br />
<br />
<button href="#" id="btnBackC">Zum Hauptmenü</button>
</div>
</section>
<section id="mainMenu">
<div class="menu">
<h1>Hauptmenü</h1>
<button id="btnStart">Spiel starten</button>
<br /><br />
<button id="btnHelp">Hilfe</button>
<br /><br />
<button id="btnCredits">Credits</button>
</div>
</section>
<section id="credits">
<div class="menu">
<h1>Credits</h1>
<h3>Spiel & Design</h3>
<span>Maximilian Klockmann</span><br />
<h3>"Määh"</h3>
<span>
Sheep (2)<br />
<a href="http://www.animal-sounds.org/farm-animal-sounds.html">Animal Sounds.org</a>
</span><br />
<h3>Wasser Geräusche</h3>
<span>
Water Waves<br />
<a href="http://opengameart.org/content/water-waves">OpenGameArt.org</a>
</span><br />
<h3>Hintergrundmusik</h3>
<span>
Crystal Cave Song18<br />
<a href="http://opengameart.org/content/crystal-cave-song18">OpenGameArt.org</a>
</span><br />
<br />
<button href="#" id="btnBackCr">Zum Hauptmenü</button>
</div>
</section>
<section id="win">
<div class="menu">
<h1>Gewonnen</h1>
<span>Du hast alles Futter auf der Insel gefunden.</span><br />
<span id="finalPoints">#</span><br />
<br />
<button href="#" id="btnBackW">Zum Hauptmenü</button>
</div>
</section>
<section id="gameOver">
<div class="menu">
<h1>GAME OVER</h1>
<span>Du bist verhungert.</span><br />
<br />
<button href="#" id="btnBackG">Zum Hauptmenü</button>
</div>
</section>
</body>
</html>