-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (23 loc) · 1002 Bytes
/
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="js/shims.js"></script>
<script src="js/sampler.js"></script>
<script type="text/javascript">
var context = new AudioContext;
function playSample(url) {
var sampler = new Sampler(context);
sampler.play(url);
};
</script>
<title>Uke Band</title>
</head>
<body>
<input type="button" value="Play G" onclick="playSample('sounds/uke_g1.wav')"></input>
<input type="button" value="Play C" onclick="playSample('sounds/uke_c1.wav')"></input>
<input type="button" value="Play E" onclick="playSample('sounds/uke_e1.wav')"></input>
<input type="button" value="Play A" onclick="playSample('sounds/uke_a1.wav')"></input>
</body>
</html>