-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (47 loc) · 1.99 KB
/
index.html
File metadata and controls
52 lines (47 loc) · 1.99 KB
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
46
47
48
49
50
51
52
<!doctype html>
<html>
<head>
<title>wubwubwub - Web Audio DJ</title>
<link rel="stylesheet" href="style/main.css" type="text/css">
<alink href='http://fonts.googleapis.com/css?family=Chango' rel='stylesheet' type='text/css'>
</head>
<body>
<script src="http://cwilso.github.io/AudioContext-MonkeyPatch/AudioContextMonkeyPatch.js"></script>
<script src='http://cwilso.github.com/WebMIDIAPIShim/WebMIDIAPI.js'></script>
<script src="js/cue.js"></script>
<script src="js/dj.js"></script>
<script src="js/midi.js"></script>
<script src="js/tracks.js"></script>
<script src="js/visualizer.js"></script>
<script src="js/audiodisplay.js"></script>
<div class="aligner">
<canvas id="wavedisplay" width="860" height="80"></canvas>
<div id="trackContainer">
</div>
<input id="xfader" class="xfade" type="range" min="0.0" max="1.0" step="0.01" value="0.5" oninput="crossfade(event.target.value)">
<div class="midi">MIDI Input: <select id=midiIn onchange='changeMidiIn();'>
<option value="">Not connected</option>
</select>
MIDI Output:
<select id=midiOut onchange='changeMidiOut();'>
<option value="">Not connected</option>
</select>
<i class="license">music tracks from <a href="http://www.freesfx.co.uk">http://www.freesfx.co.uk</a>.</i>
</div>
</div>
<a href="https://github.com/cwilso/wubwubwub" class="header" style="position: absolute; z-index:2; top: 0; right: 0; border: 0;"><img src="img/forkme.png" alt="Fork me on GitHub"></a>
<div style="visibility:hidden; width: 1px; height: 1px" id="MIDIPlugin"></div>
<!--
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-35593052-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
-->
</body>
</html>