音楽を聞き分けることの練習をする

考えている時間はありません すぐに 反応してください

画像をクリックしてください

画像をクリックしてください 音楽は 三十秒ほどで ダンス

種目が 切り替わります 隣の人の踊りを眺めて タンゴとか

ワルツ とか を 決めるのではなく ステップに素早く 動いてください

種目を確かめている 時間はありませんので素早く 体制を整えて

ステップを踏んでください

ステップが 出てこなければ リズムに合わせて 体を 動かせてめてください

音楽を聴けば体が動きます

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