-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (42 loc) · 1.46 KB
/
Copy pathindex.html
File metadata and controls
51 lines (42 loc) · 1.46 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
<!DOCTYPE html>
<html>
<head>
<title>JavaScript Tower Defense</title>
<meta charset="utf-8" />
<!-- <link rel="stylesheet" type="text/css" href="./src/style/index.css" /> -->
</head>
<body>
<main>
<div id="choose-stage">
<a href="#" data-stage="1" class="choose-stage-button">STAGE 1</a>
<a href="#" data-stage="2" class="choose-stage-button">STAGE 2</a>
<a href="#" data-stage="3" class="choose-stage-button">STAGE 3</a>
<a href="https://github.com/noiron/tower-defense-js" id="source-code" target="_blank">
Source Code
</a>
</div>
<canvas id="background"></canvas>
<canvas id="drawing"></canvas>
<canvas id="game-control"></canvas>
<canvas id="game-info"></canvas>
<canvas id="error-message" width="1130" height="650"></canvas>
<div id="status" class="ui"></div>
<div id="panels">
<div id="message" class="ui">
<h2 id="title">JavaScript Tower Defense</h2>
<ul>
<li>1. Wow!</li>
<li>2. Much games.</li>
<li>3. Many fun.</li>
</ul>
<a href="#" id="start-button">Start</a>
<a href="#" id="back-button">Back</a>
</div>
</div>
<div id="game-over" style="display: none">Game Over</div>
</main>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script src="./static/bundle.js"></script>
</body>
</html>