-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathindex.html
executable file
·42 lines (38 loc) · 1.36 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>WebGL Demo</title>
<link rel="stylesheet" href="../webgl.css" type="text/css">
</head>
<body>
<canvas id="glcanvas" width="1280" height="720"></canvas>
</body>
<audio src = './theme.m4a' id = "music" loop></audio>
<audio src = './stumble.wav' id = "stumble"></audio>
<audio src = './coin.wav' id = "coin"></audio>
<audio src = './powerup.wav' id = "powerup"></audio>
<script src="./gl-matrix.js"></script>
<script src="./cubeprime.js"></script>
<script src="./jeans.js"></script>
<script src="./doglegs.js"></script>
<script src="./doghead.js"></script>
<script src="./dogbody.js"></script>
<script src="./boots.js"></script>
<script src="./coins.js"></script>
<script src="./jetpack.js"></script>
<script src="./speed.js"></script>
<script src="./jeanschaser.js"></script>
<script src="./trafficlight.js"></script>
<script src="./obstacle1.js"></script>
<script src="./obstacle2.js"></script>
<script src="./trafficlightstand.js"></script>
<script src="./head.js"></script>
<script src="./body.js"></script>
<script src="./hands.js"></script>
<script src="./headchaser.js"></script>
<script src="./bodychaser.js"></script>
<script src="./handschaser.js"></script>
<script src="./fence.js"></script>
<script src="./main.js"></script>
</html>