市民センターでワルツ、スロー、のステップ Good
ダンス
2025-05-26
市民センターでスローフォックストロットやワルツを踊っています一生懸命に
おどっているので踊りには批評をしないでくださいね
頑張ってやってるなーとゆう風に観てください
マスクがとれて顔が見える状態になる日ももう少しで来ると思います
その日が来る日を楽しみにアマチュアダンサーのまー猿が頑張っています
難しいステップは踊れませんのでベーシックフィガーでもこんな風に
踊れるよ と楽しんでいます

公告
アンケートに答えるだけで小遣い稼ぎが出来るアンケートモニターサイト
https://infoq.jp/referral/index/33683e9c4ad7ee4/0
タイトルと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);
});