-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (31 loc) · 1.65 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
<!DOCTYPE html>
<html>
<head>
<title>INGI2261 - Avalam</title>
<!-- The CSS stylesheet -->
<link rel="stylesheet" href="style.css">
<!-- Load the Paper.js library -->
<script type="text/javascript" src="js/paper-full.min.js"></script>
<!-- Load the Buckets.js library -->
<script type="text/javascript" src="js/buckets.min.js"></script>
<!-- Define inlined PaperScript associate it with myCanvas -->
<script type="text/paperscript" src="js/avalam.js" canvas="avalamBoard" keepalive="true"></script>
</head>
<body>
<center>
<input type="file">
<canvas class="board" id="avalamBoard" width="100%" height="100%" position="absolute" background="#d5d5d5" top="0" left="0">
Your browser don't support HTML5. Please use a HTML5 compatible browser.
</canvas>
</center>
<img id="pause" style="visibility:hidden" src="images/pause.png" width="0" height="0">
<img id="play" style="visibility:hidden" src="images/play.png" width="0" height="0">
<img id="previous" style="visibility:hidden" src="images/previous.png" width="0" height="0">
<img id="next" style="visibility:hidden" src="images/next.png" width="0" height="0">
<img id="pause_disabled" style="visibility:hidden" src="images/pause_disabled.png" width="0" height="0">
<img id="play_disabled" style="visibility:hidden" src="images/play_disabled.png" width="0" height="0">
<img id="previous_disabled" style="visibility:hidden" src="images/previous_disabled.png" width="0" height="0">
<img id="next_disabled" style="visibility:hidden" src="images/next_disabled.png" width="0" height="0">
<img id="start" style="visibility:hidden" src="images/start.png" width="0" height="0">
</body>
</html>