-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpixelated.html
More file actions
40 lines (36 loc) · 1.17 KB
/
Copy pathpixelated.html
File metadata and controls
40 lines (36 loc) · 1.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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Pixelated Game</title>
<style>
#playArea {
cursor: pointer;
background-color: transparent;
}
#playBtn {
min-width: 20%;
font-size: 2em;
}
</style>
</head>
<body>
<div></div>
<h1>Pixelated Game</h1>
<canvas id="playArea">Schade, der Browser unterstützt kein Canvas Element.</canvas>
<div>
<button id="playBtn" name="play">play</button>
</div>
<script src="./js/pixelated.js"></script>
<script>
(function () {
var game = new pixelated('playArea');
var playBtn = document.getElementById('playBtn');
playBtn.addEventListener("click", game.playGame, false);
game.playGame();
})();
</script>
</body>
</html>