2024-12

ダンス

JIVEを踊ろう 基礎練習

ダンス

踊る自信がつくように 音楽と プリモーションが欲しいです 

ダンス

音楽が聞こえてダンスの種目を判断するのは演技者です

ダンス

人間は音楽に合わせて身体を揺らすことに根源的な喜びを感じる生き物だそうです

ダンス

 玩具のチャチャチャで踊らないでください

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