// document.addEventListener("scroll", function () { // var pageTop = window.scrollY; // var pageBottom = pageTop + window.innerHeight; // var tags = document.querySelectorAll(".tag-down, .tag-left"); // tags.forEach(function (tag) { // var tagTop = tag.getBoundingClientRect().top + window.scrollY; // if (tagTop < pageBottom) { // tag.classList.add("visible"); // } else { // tag.classList.remove("visible"); // } // }); // });