forked from Menardi/whosthatpokemon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·36 lines (30 loc) · 1.43 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
<!DOCTYPE html>
<html>
<head>
<title>Wie is deze Pokémon?</title>
<meta description="HTML5 game where you guess the Pokémon from the silhouette!" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<script src="js/jquery-2.0.3.min.js" type="application/javascript"></script>
<script src="js/names.js" type="application/javascript"></script>
<script src="js/lang.js" type="application/javascript"></script>
<script src="js/pokemon.js" type="application/javascript"></script>
</head>
<body>
<div id="container">
<noscript><div id="noJavascript" class="upperBox warning">Hey there! You need Javascript enabled for this game to work. It's used to make the Pokemon silhouettes and to check your answers. Turn it on if you want to play!</div></noscript>
<div id="main">
<div id="whosthatpokemon">
<span id="pokemonGuess">Wie is deze Pokémon?</span>
<div id="playArea">
<div id="canvasContainer">
<canvas id="shadowImage" onload="centerPokemon();">
You need a new-ish browser to play this, and you need Javascript enabled too.
</canvas>
</div>
</div>
</div>
</div>
</div>
</body>
</html>