市民シニア歌の広場 の開催がありました
ダンス
2024-10-09
里の秋(R) 故郷の空
リンゴのひとりごと 小さい秋見つけた
山寺の和尚さん 山のロザリア(w)
ありがとう 夕月
月がとっても青いから ブルーシャトー
ヤングマン 相馬盆踊り唄
タイトルとURLをコピーしました
oscillator.frequency.value = freq;
oscillator.connect(gainNode);
gainNode.connect(audioCtx.destination);
oscillator.start();
gainNode.gain.setValueAtTime(1, audioCtx.currentTime);
gainNode.gain.exponentialRampToValueAtTime(0.0001, audioCtx.currentTime + duration);
oscillator.stop(audioCtx.currentTime + duration);
}
const beat = 60 / 100;
document.getElementById("one").addEventListener("click", function () {
playTone(2000, beat * 0.75);
});
document.getElementById("a").addEventListener("click", function () {
playTone(2000, beat * 0.25);
});
document.getElementById("two").addEventListener("click", function () {
playTone(2000, beat * 1);
});