-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinterface.html
33 lines (30 loc) · 925 Bytes
/
interface.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Quidditch Tactics</title>
<meta name="description" content="Discuss Quidditch tactics with this interface"/>
<meta name="author" content="Quentin Brault"/>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<div id="context-menu">
<menu name="Add Beater"></menu>
<menu name="Add Chaser"></menu>
<menu name="Add Keeper"></menu>
<menu name="Add Seeker"></menu>
<menu name="Add Bludger"></menu>
<menu name="Add Quaffle"></menu>
</div>
<canvas tabindex="1" id="pitch" width="800" height="600"></canvas>
<br/>
<button id="export-btn">Export</button>
<button id="import-btn">Import</button>
<br/>
<textarea id="data-txtarea" rows="30" cols="100"></textarea>
<script src="cycle.js"></script>
<script src="script.js"></script>
<script src="data.js"></script>
<script src="drawing.js"></script>
</body>
</html>