-
Notifications
You must be signed in to change notification settings - Fork 111
/
index.html
83 lines (73 loc) · 2.8 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
78
79
80
81
82
83
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta charset="utf-8" />
<title>Web Audio Playground</title>
<link rel="shortcut icon" href="favicon.ico" />
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Droid+Serif:400italic" />
<link rel="stylesheet" href="css/reset.css" />
<link rel="stylesheet" href="css/main.css" />
<script src="http://cwilso.github.io/AudioContext-MonkeyPatch/AudioContextMonkeyPatch.js"></script>
<script src="js/main.js"></script>
<script src="js/dragging.js"></script>
<script src="js/analyser.js"></script>
<script>
if (window != window.top)
document.write("<style>#header {display:none}</style>")
</script>
</head>
<body>
<div id="main" class="container">
<header id="header">
<img src="img/logo.png" alt="Web Audio Playground: A demonstration of the web audio API // v 1.0" />
</header>
<nav id="nav">
<ul id="controls" class="container">
<li>
<a href="#">Add Audio Source</a>
<div class="sub-menu">
<ul>
<li><a href="#" id="cabs">Audio Buffer Source</a></li>
<!--
<li><a href="#">Audio Buffer Source From URL</a></li>
--> <li><a href="#" id="cosc">Oscillator</a></li>
<li><a href="#" id="cliv">Live Input</a></li>
</ul>
</div>
</li>
<li>
<a href="#">Add Module</a>
<div class="sub-menu">
<ul>
<li><a href="#" id="cbqf">Biquad Filter</a></li>
<li><a href="#" id="cdel">Delay Node</a></li>
<li><a href="#" id="cdyc">Dynamics Compressor</a></li>
<li><a href="#" id="cgai">Gain Node</a></li>
<li><a href="#" id="ccon">Convolver</a></li>
<li><a href="#" id="cana">Analyser</a></li>
</ul>
</div>
</li>
</ul>
</nav>
<section id="modules" class="container">
</section>
<div class="link">Code available on <a href="https://github.com/cwilso/WebAudio">GitHub</a>.</div>
</div> <!-- /#main -->
<div id="output" class="destination">
<div class="node node-input"><span class="node-button"> </span></div>
</div> <!-- /#output -->
<svg id=svgCanvas xmlns="http://www.w3.org/2000/svg" version="1.1" style="width:100%; height:100%; position:absolute; top:0; left:0; z-index:-1;"></svg>
<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>