-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (64 loc) · 2.17 KB
/
index.html
File metadata and controls
68 lines (64 loc) · 2.17 KB
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
<html manifest="offline.appcache">
<head>
<meta charset="utf-8" />
<title>Hilf der Maus!</title>
<link rel="stylesheet" href="styles/styles.css" />
</head>
<body>
<h1>Hilf der Maus!</h1>
<div id="drawing">
<div class="house">
<div class="back left"> </div>
<div class="wall left"> </div>
<div class="roof left"> </div>
<div class="back right"> </div>
<div class="wall right"> </div>
<div class="roof right"> </div>
</div>
<div class="cheese">
<div class="pieContainer">
<div class="pieBackground"></div>
<div id="pieSlice" class="hold">
<div class="pie"></div>
</div>
</div>
<div class="body"> </div>
<div class="hole one"> </div>
<div class="hole two"> </div>
<div class="hole three"> </div>
</div>
<div class="mouse">
<div class="body-top"> </div>
<div class="body-bottom"> </div>
<div class="ear"> </div>
<div class="nose"> </div>
<div class="eye"> </div>
<div class="tail wobble"> </div>
</div>
<div class="background">
<div id="flower-template" class="flower">
<div class="stalk"></div>
<div class="petal petal-bl"></div>
<div class="petal petal-tl"></div>
<div class="petal petal-tr"></div>
<div class="petal petal-br"></div>
</div>
</div>
<div id="mouse-bubble" class="bubble"> </div>
<div id="common-bubble" class="bubble"> </div>
</div>
<div id="controls">
<label for="code">Dein Programm:</label>
<textarea id="code" placeholder="Was soll die Maus tun?" spellcheck="false"></textarea>
<button id="start">Los geht's</button>
<button id="reset">Zurück</button>
<label for="helpOnInstructions">Mögliche Anweisungen:</label>
<div id="helpOnInstructions"></div>
</div>
<script src="src/cloner.js"> </script>
<script src="src/animator.js"> </script>
<script src="src/steps.js"> </script>
<script src="src/parser.js"> </script>
<script src="src/app.js"> </script>
</body>
</html>