-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (33 loc) · 1.19 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
45
<!DOCTYPE html>
<html>
<head>
<title>Pong</title>
<style>*{-webkit-tap-highlight-color: rgba(0, 0, 0, 0);}</style>
<script src="https://code.createjs.com/easeljs-0.4.2.min.js"></script>
<script src="https://code.createjs.com/tweenjs-0.2.0.min.js"></script>
<script src="https://code.createjs.com/soundjs-0.2.0.min.js"></script>
<script src="https://code.createjs.com/preloadjs-0.1.0.min.js"></script>
<script src="https://code.createjs.com/movieclip-0.4.1.min.js"></script>
<script src="assets/soundjs.flashplugin-0.2.0.min.js"></script>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="Main.js"></script>
</head>
<body onload="Main();">
<canvas id="PongStage" width="480" height="320"></canvas>
</body>
<script>
</script>
</html>
<!--
<!DOCTYPE html>
<html>
<head>
<title>Pong</title>
<style>*{-webkit-tap-highlight-color: rgba(0, 0, 0, 0);}</style>
<script src="Main.js"></script>
</head>
<body onload="Main();">
<canvas id="Pong" width="480" height="320"></canvas>
</body>
</html> -->