-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (22 loc) · 798 Bytes
/
index.html
File metadata and controls
24 lines (22 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<html>
<head>
<title>Simple web audio graphs</title>
<link rel="stylesheet" type="text/css" href="./app.css">
</head>
<body>
<div class="content">
<div class="graph">
<a href="./graph1.html"><button type="button" class="graph-button">Graph 1</button></a>
<p class="description">A simple oscillator connected to an analyzer node and then to the destination.</p>
</div>
<div class="graph">
<a href="./graph2.html"><button type="button" class="graph-button">Graph 2</button></a>
<p class="description">Getting sound from the computer's input and adding a delay to it.</p>
</div>
<div class="graph">
<a href="./graph3.html"><button type="button" class="graph-button">Graph 3</button></a>
<p class="description">Reading a sound file.</p>
</div>
</div>
</body>
</html>