動きに合わせた音楽を 思い浮かべることはできますか

あなたは この動きには どんな音楽が おすすめですか

動きに合わせた音楽を 見つけるのも 楽しめるのではありませんか

カラオケでよく見かけるのが 替え歌がありますが これは

その反対のような 動きに合わせた音楽を見つける

面白いと思いませんか 動きを見て あなたは

どんな 音楽が浮かんできますでしょうか

画像を見ていると音楽が頭の中に浮かんできて ステップが浮かんできませんか

自分の得意のステップが浮かんできますか 好きな音楽が聞こえてきますか

タイトルと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); });