mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-16 16:48:00 +00:00
71 lines
No EOL
1.7 KiB
HTML
71 lines
No EOL
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>NOISES</title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
|
|
<link rel="icon" type="image/png" sizes="174x174" href="./style/favicon.png">
|
|
|
|
<script type="text/javascript" src="../build/Tone.js"></script>
|
|
<script type="text/javascript" src="./scripts/jquery.min.js"></script>
|
|
<script type="text/javascript" src="./scripts/draggabilly.js"></script>
|
|
<script type="text/javascript" src="./scripts/Interface.js"></script>
|
|
<script type="text/javascript" src="./scripts/Logo.js"></script>
|
|
|
|
<link rel="stylesheet" type="text/css" href="./style/examples.css">
|
|
|
|
<script type="text/javascript">
|
|
// jshint ignore: start
|
|
</script>
|
|
|
|
</head>
|
|
<body>
|
|
<style type="text/css">
|
|
.Dragger#Noise {
|
|
left: 50%;
|
|
}
|
|
</style>
|
|
<div id="Content">
|
|
<div id="Title">Noise</div>
|
|
<div id="Explanation">
|
|
<a href="http://tonejs.org/docs/#Noise">Tone.Noise</a>
|
|
has 3 different types of noise. Careful, it's loud!
|
|
</div>
|
|
<div id="DragContainer"></div>
|
|
</div>
|
|
<script id="ToneCode" type="text/javascript">
|
|
//make the noise and connect it to the output
|
|
var noise = new Tone.Noise({
|
|
"volume" : -20,
|
|
"type" : "brown"
|
|
}).toMaster();
|
|
</script>
|
|
|
|
<script id="GUI" type="text/javascript">
|
|
$(function(){
|
|
|
|
new Interface.Dragger({
|
|
tone : noise,
|
|
y : {
|
|
param : "volume",
|
|
min : -40,
|
|
max : 0
|
|
},
|
|
x : {
|
|
param : "type",
|
|
options : ["white", "brown", "pink"]
|
|
},
|
|
start : function(){
|
|
noise.start();
|
|
Tone.Master.volume.rampTo(0, 0.05);
|
|
},
|
|
end : function(){
|
|
//so it doesn't click
|
|
Tone.Master.volume.rampTo(-Infinity, 0.05);
|
|
}
|
|
});
|
|
})
|
|
</script>
|
|
</body>
|
|
</html> |