Created
September 26, 2018 08:29
-
-
Save panayotoff/96ea49e1d2532f2f2cbed7d82bc0d99a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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