2025-06

ダンス

ビートの違いを理解するとあなたのダンスが変わります これがリズムステップです

ダンス

音楽を聴いて 種目の違いが 判ると 変わる 動きの イメージが違ってきます

ダンス

社交ダンスの音楽 BPM や ビート とは 何ですか

ダンス

初めて踊るスローフォックストロットの足運び ロアーのタイミング

ダンス

タイミングの合わせ方での悩みを解決する

ダンス

こんな風に踊りたいですね

ダンス

音楽を聴いてダンスの種目や音楽のテンポお確認できますか 

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); });