-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
54 lines (48 loc) · 2.19 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>Drum synthesis by chrislo</title>
<link rel="stylesheet" href="stylesheets/styles.css">
<link rel="stylesheet" href="stylesheets/pygment_trac.css">
<link rel="stylesheet" href="stylesheets/buttons-min.css">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="wrapper">
<header>
<h1>Drum synthesis</h1>
<p>Examples of drum synthesis using the Web Audio API.</p>
<p class="view"><a href="https://github.com/chrislo/drum_synthesis">View the Project on GitHub <small>chrislo/drum_synthesis</small></a></p>
<ul>
<li><a href="https://github.com/chrislo/drum_synthesis/zipball/master">Download <strong>ZIP File</strong></a></li>
<li><a href="https://github.com/chrislo/drum_synthesis/tarball/master">Download <strong>TAR Ball</strong></a></li>
<li><a href="https://github.com/chrislo/drum_synthesis">View On <strong>GitHub</strong></a></li>
</ul>
</header>
<section>
<h3>Drum Synthesis.</h3>
<p>This example of drum synthesis was created for
an <a href="https://dev.opera.com/articles/drum-sounds-webaudio/">article
I wrote for the Opera Developer blog</a>. You should go there
to read the gory details.</p>
<p>
<button id="play" class="pure-button pure-button-disabled">PLAY</button>
<button id="pause" class="pure-button">PAUSE</button>
</p>
</section>
<footer>
<p>This project is maintained by <a href="https://github.com/chrislo">chrislo</a></p>
<p><small>Hosted on GitHub Pages — Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p>
</footer>
</div>
<script src="javascripts/scale.fix.js"></script>
<script src="javascripts/jquery-2.1.3.min.js"></script>
<script src="javascripts/Tone.min.js"></script>
<script src="javascripts/drums.js"></script>
</body>
</html>