-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (36 loc) · 1.44 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
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<head>
<meta charset="UTF-8">
<title>EaselJS presentation</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<canvas id="presentation" width="800" height="350"></canvas>
<h3>Instructions:</h3>
Press <Tab> to go to the next <i>"slide"</i><br>
Use the arrow keys to move the player.<br>
Press <R> to restart the canvas and slides.
<h3>Presentation:</h3>
<a href="http://slides.com/stefanjanssen/easeljs/live#/">Slides</a>
<div>
<section>
<h3>Images by:</h3>
<a href="http://kenney.nl/"><img src="http://kenney.nl/data/img/logo.png" alt="Kenney"></a>
</section>
<section>
<h3>Github:</h3>
<a href="https://github.com/StefanJanssen95/Presentation-EaselJS"><img src="img/github.png" alt="Repository"></a>
</section>
</div>
<script src="js/createjs/easel.js"></script>
<script src="js/classes/staticPlayer.js"></script>
<script src="js/classes/animatedPlayer.js"></script>
<script src="js/classes/solid.js"></script>
<script src="js/keyhandler.js"></script>
<script src="js/helperFunctions.js"></script>
<script src="js/imageLoader.js"></script>
<script src="js/game.js"></script>
<script src="js/init.js"></script>
</body>
</html>