-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
77 lines (69 loc) · 4.32 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html>
<head>
<link href="http://fonts.googleapis.com/css?family=Droid+Sans+Mono:regular" rel="stylesheet" type="text/css" >
<link rel=StyleSheet href="voron.css" type="text/css" media=screen>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<script type="text/javascript">
//See http://paulirish.com/2009/fighting-the-font-face-fout/
(function(){
// if firefox 3.5+, hide content till load (or 3 seconds) to prevent FOUT
var d = document, e = d.documentElement, s = d.createElement('style');
if (e.style.MozTransform === ''){ // gecko 1.9.1 inference
s.textContent = 'body{visibility:hidden}';
var r = document.getElementsByTagName('script')[0];
r.parentNode.insertBefore(s, r);
function f(){ s.parentNode && s.parentNode.removeChild(s); }
addEventListener('load',f,false);
setTimeout(f,3000);
}
})();
</script>
<title>Voron demo for KievII</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="http://github.com/notmasteryet/audiodata/raw/master/audiodata.js"></script>
<script type="text/javascript" src="https://github.com/corbanbrook/dsp.js/raw/master/dsp.js"></script>
<script type="text/javascript" src="https://github.com/janesconference/KievII/raw/master/utilities/Utilities.js"></script>
<script type="text/javascript" src="https://github.com/janesconference/KievII/raw/master/graphic_elements/Element.js"></script>
<script type="text/javascript" src="https://github.com/janesconference/KievII/raw/master/graphic_elements/UI.js"></script>
<script type="text/javascript" src="https://github.com/janesconference/KievII/raw/master/graphic_elements/Knob.js"></script>
<script type="text/javascript" src="https://github.com/janesconference/KievII/raw/master/graphic_elements/Slider.js"></script>
<script type="text/javascript" src="https://github.com/janesconference/KievII/raw/master/graphic_elements/Button.js"></script>
<script type="text/javascript" src="https://github.com/janesconference/KievII/raw/master/graphic_elements/Label.js"></script>
<script type="text/javascript" src="https://github.com/janesconference/KievII/raw/master/graphic_elements/Background.js"></script>
<script type="text/javascript" src="https://github.com/janesconference/KievII/raw/master/graphic_elements/wrappers/CanvasDraw.js"></script>
<script type="text/javascript" src="https://github.com/janesconference/KievII/raw/master/graphic_elements/wrappers/Wrappers.js"></script>
<script type="text/javascript" src="https://github.com/janesconference/KievII/raw/master/dsp/pitchshift.js"></script>
<script type="text/javascript" src="https://github.com/janesconference/KievII/raw/master/audio/ADShifterFilter.js"></script>
<script type="text/javascript" src="https://github.com/janesconference/KievII/raw/master/audio/ADLowPassFilter.js"></script>
<script type="text/javascript" src="https://github.com/janesconference/KievII/raw/master/audio/ADSimpleVolume.js"></script>
<script type="text/javascript" src="voron.js"></script>
</head>
<body>
<div ID="div-2">
<audio id="a1" controls="controls" loop="loop">
<source src="AKBeatch.ogg">
Your browser does not support the audio element, go get a <a href="http://www.mozilla.com/it/firefox/">real browser.</a>
</audio>
</div>
<div ID="div-1">
<canvas id="plugin" width="816" height="580"></canvas>
</div>
<div ID="div-message">
<!-- Hack to load the embedded font -->
<p id ="message" class="embed_msg"></p>
</div>
<div ID="div-info">
<p> Song: "The Beatch" by <a href="http://soundcloud.com/arzekareem">Arze Kareem</a>.<br />
Demo brought to you by JanesConference's <a href="https://github.com/janesconference/KievII">KievII</a> library.</p>
</div>
<script type="text/javascript">
window.onload = function() {
// This should fix "console not defined" problem.
if (typeof console=="undefined"){console={log:function(A){var B=false;if(B){alert(A)}}}}
//Call the VORON app
VORON.init();
}
</script>
</body>
</html>