からだのパーツは別々に動きます

自分自身のからだのパーツは一括して動かさずにパーツごとに

時間差で動かしてください 鳩が体を移動しないで首だけ

動かして餌を食べる姿のように

説明の動画ページをリンクさせていただきました

これからの第一歩の動作の

お話です すごく丁寧な説明でこれを理解できるようになる練習を

積んで 技術力のアップに励みたいです

変化は右あり左もありです

体の前後の変化も感じてください

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