Untitled

 avatar
unknown
plain_text
17 days ago
448 B
6
Indexable
function toggleLamp() {
  isOn = !isOn;
  clickSound.play();

  body.setAttribute("data-on", isOn);
  root.style.setProperty("--on", isOn ? 1 : 0);

  if (isOn) {
    loginForm.classList.add("active");
    gsap.to(body, { backgroundColor: "#1c1f24", 
                   duration: 0.6 });
  } else {
    loginForm.classList.remove("active");
    gsap.to(body, { backgroundColor: "#121417", 
                   duration: 0.6 });
  }
}
Editor is loading...
Leave a Comment