mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-16 16:48:00 +00:00
e9f63deef5
[skip ci]
62 lines
No EOL
1.6 KiB
HTML
62 lines
No EOL
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>PLAYER</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/StartAudioContext.js"></script>
|
|
<script type="text/javascript" src="./scripts/Interface.js"></script>
|
|
<script type="text/javascript" src="https://tonejs.github.io/Logo/build/Logo.js"></script>
|
|
|
|
<link rel="stylesheet" type="text/css" href="./style/examples.css">
|
|
|
|
<script type="text/javascript">
|
|
// jshint ignore: start
|
|
</script>
|
|
|
|
</head>
|
|
<body>
|
|
<div id="Content">
|
|
<div id="Title">Grains</div>
|
|
<div id="Explanation">
|
|
Click on the button to play short looped section of the audio file
|
|
using <a href="https://tonejs.github.io/docs/#Player">Tone.Player</a>.
|
|
</div>
|
|
</div>
|
|
<script type="text/javascript">
|
|
|
|
//the player
|
|
var player = new Tone.Player({
|
|
"url" : "./audio/FWDL.mp3",
|
|
"loop" : true,
|
|
"loopStart" : 0.101,
|
|
"loopEnd" : 0.211,
|
|
}).toMaster();
|
|
</script>
|
|
|
|
<script id="GUI" type="text/javascript">
|
|
$(function(){
|
|
|
|
new Interface.Loader();
|
|
|
|
new Interface.Button({
|
|
text : "Start Grain",
|
|
activeText : "Stop Grain",
|
|
start : function(){
|
|
player.start();
|
|
},
|
|
end : function(){
|
|
player.stop();
|
|
}
|
|
});
|
|
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |