Untitled

Anonymous
plain_text
06/24/2023 3:31 PM
484 B
13
Indexable
  // FOOTER
  window.onload = function() {
    var socialMediaIcon = document.querySelector(".social-media img");
    socialMediaIcon.addEventListener("mouseover", function() {
      this.style.transform = "rotate(360deg)";
    });

    socialMediaIcon.addEventListener("mouseout", function() {
      this.style.transform = "rotate(0deg)";
    });
  };
Editor is loading...