-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
23 lines (22 loc) · 833 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<link href='http://fonts.googleapis.com/css?family=VT323' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="main.css">
<script src="http://code.createjs.com/easeljs-0.6.0.min.js"></script>
<script src="scripts/jquery.min.js"></script>
<script src="howler.js/howler.min.js"></script>
<script src="scripts/wobble.js"></script>
</head>
<body onLoad="init();">
<div class="count"><p style="width: 10px; height: 10px;"></p></div>
<div id="controls">
<button id="stop" onclick="stop_music();">MAKE IT STOP</button>
<button id="drums" onclick="play_drums();">PLAY DRUMS</button>
<button id="crazy" onclick="go_crazy()";>GO CRAZY</button>
</div>
<canvas id = "canvas" width="1400" height="1000">
alternate content
</canvas>
</body>
</html>