switch vertical animation to menu

PHOTO EMBED

Tue May 31 2022 06:04:57 GMT+0000 (Coordinated Universal Time)

Saved by @jaysoni123 #jquery

 const menuSwitcher = document.getElementById("menuSwitcher");
      const menu = document.getElementById("menu");
      let rotation = 0;
      menuSwitcher.addEventListener("click", () => {
        rotation += 90;
        menu.style.transform = `rotate(${rotation}deg)`;
      });
content_copyCOPY