You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

85 lines
2.5 KiB

<html>
<head>
<meta charset="utf-8">
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.9.0/p5.min.js" type="text/javascript"></script>
<script src="https://code.jquery.com/jquery-3.6.4.min.js" type="text/javascript"></script>
<script src="scripts/lib/BenjoLibrary.js" type="text/javascript"></script>
<script src="scripts/Main.js" type="text/javascript"></script>
<script src="scripts/sketch.js" type="text/javascript"></script>
<script src="scripts/Objects.js" type="text/javascript"></script>
<script src="scripts/Level.js" type="text/javascript"></script>
<script src="scripts/Switcher.js" type="text/javascript"></script>
<script src="scripts/WindowEvents.js" type="text/javascript"></script>
<script src="scripts/Stats.js" type="text/javascript"></script>
<link href="stylesheets/styles.css" rel="stylesheet">
<link href="pictures/favicon.ico" rel="icon" type="image/x-icon">
<title>Bricks</title>
</head>
<body>
<div id="info">
<input id="closeButton" onclick="closeInfo(this)" type="button" value="X">
<div id="levelSelector">
<span id="levelLabel">Level:</span>
<input id="levelUp" onclick="addLevel(this, 1)" type="button" value="&uarr;">
<span id="currentLevel"></span>
<input id="levelDown" onclick="addLevel(this, -1)" type="button" value="&darr;">
</div>
<div id="rekordInfo">
<center>
<table>
<tr>
<td>Gesamtspielzeit:</td>
<td id="totalTimePlayed"></td>
</tr>
<tr>
<td>Gesamtanzahl Blöcke:</td>
<td id="totalBricksDestroyed"></td>
</tr>
</table>
<table>
<tr>
<td>Blöcke</td>
<td>Level</td>
<td>Rekordzeit</td>
</tr>
</table>
</center>
</div>
<div id="controlsInfo">
<table>
<tr>
<td>Start / Stop:</td>
<td>SPACE</td>
</tr>
<tr>
<td>Bewegen:</td>
<td>&larr; &rarr;</td>
</tr>
<tr>
<td>Neustart:</td>
<td>SHIFT + R</td>
</tr>
<tr>
<td>Daten löschen:</td>
<td>SHIFT + D</td>
</tr>
<tr>
<td>Interface Aus/An:</td>
<td>ESC / TAB</td>
</tr>
<tr>
<td colspan="2">
<input id="infoButton" onclick="openInstructions(); this.blur();" type="button" value="Anleitung">
</td>
</tr>
</table>
</div>
</div>
<div id="openButton">
<input onclick="openInfo(this)" type="button" value=">>>">
</div>
<div id="timeDiv">
<span></span>
</div>
</body>
</html>