Skip to content

Instantly share code, notes, and snippets.

@panayotoff
Created September 26, 2018 08:29
Show Gist options
  • Save panayotoff/96ea49e1d2532f2f2cbed7d82bc0d99a to your computer and use it in GitHub Desktop.
Save panayotoff/96ea49e1d2532f2f2cbed7d82bc0d99a to your computer and use it in GitHub Desktop.
const a = new AudioContext();
const oo = a.createOscillator();
oo.connect(a.destination);
oo.type="square";
oo.start();
window.addEventListener("mouseover", e => oo.frequency.linearRampToValueAtTime(e.target .innerHTML.length * 0.1 + 37, a.currentTime + 0.37));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment