<html>
<head>
<meta name="description" content="685byte synth - No HTML or CSS is needed. Everything is rendered by Javascript.">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>685byte synth</title>
</head>
<body>
<h1>685byte synth</h1>
<h3>No HTML or CSS is needed. Everything is rendered by Javascript.</h3>
<h4><a href="https://closure-compiler.appspot.com/code/jsca024c9c98386dcd1dd7c0c5026903874/default.js">minified source</a> made by <a href="http://twitter.com/reimertz"> @reimertz</a></h4>
</body>
</html>
var t,z = document,
ih = 'innerHTML',
iO = 'indexOf',
hzMap = [],
keyMap = 'Q2W3ER5T6Y7UZSXDCVGBHNJM'.split(''),
activeTones = [],
ac = new (AudioContext||webkitAudioContext)(),
o = ac.createOscillator(),
gn = ac.createGain();
o.connect(gn); o.type = 'square'; o.start();
gn.connect(ac.destination); gn.gain.value = 0;
z.body[ih] += '<b id="p"></b><style>p{align-items:flex-end;display:inline-flex;width:6%;height:99px;background:#fea;margin:5px}[s]{color:#fff;background:#000;position:absolute;height:50px;margin-left:-3%}[a*="t"]{padding:0 0 25px}</style>';
p[ih] = keyMap.map(function(key, index) {
hzMap.push(440*Math.pow(2,(index-33)/12));
return '<p id="_' + index + ((!~[1,3,6,8,10][iO](index%12)) ? '"' : '"s=""') + '>' + key + '</p>';
}).join('');
function playNote(i) {
clearTimeout(t);
o.frequency.value = hzMap[i];
gn.gain.value = .5;
}
function stopeNote() {
;
if((gn.gain.value *= .9) > 0 && !activeTones.length)
t = setTimeout(stopeNote, 9);
}
z.onkeyup = z.onkeydown = function (e) {
var index = keyMap[iO](String.fromCharCode(e.keyCode)),
isDown = e.type == 'keydown';
if (!~index || (~activeTones[iO](index) && isDown)) return;
window['_'+index].setAttribute('a', !!isDown);
if (isDown) {
activeTones.push(index);
playNote(index);
}
else {
activeTones.splice(activeTones[iO](index),1);
if (!activeTones.length) stopeNote();
else playNote(activeTones[0]);
}
}
Output
You can jump to the latest bin by adding /latest
to your URL
Keyboard Shortcuts
Shortcut | Action |
---|---|
ctrl + [num] | Toggle nth panel |
ctrl + 0 | Close focused panel |
ctrl + enter | Re-render output. If console visible: run JS in console |
Ctrl + l | Clear the console |
ctrl + / | Toggle comment on selected lines |
ctrl + ] | Indents selected lines |
ctrl + [ | Unindents selected lines |
tab | Code complete & Emmet expand |
ctrl + shift + L | Beautify code in active panel |
ctrl + s | Save & lock current Bin from further changes |
ctrl + shift + s | Open the share options |
ctrl + y | Archive Bin |
Complete list of JS Bin shortcuts |
JS Bin URLs
URL | Action |
---|---|
/ | Show the full rendered output. This content will update in real time as it's updated from the /edit url. |
/edit | Edit the current bin |
/watch | Follow a Code Casting session |
/embed | Create an embeddable version of the bin |
/latest | Load the very latest bin (/latest goes in place of the revision) |
/[username]/last | View the last edited bin for this user |
/[username]/last/edit | Edit the last edited bin for this user |
/[username]/last/watch | Follow the Code Casting session for the latest bin for this user |
/quiet | Remove analytics and edit button from rendered output |
.js | Load only the JavaScript for a bin |
.css | Load only the CSS for a bin |
Except for username prefixed urls, the url may start with http://jsbin.com/abc and the url fragments can be added to the url to view it differently. |