Skip to content

Commit

Permalink
extension-generator -- we bring the BLOOM (part 2)
Browse files Browse the repository at this point in the history
  • Loading branch information
SharkPool-SP authored Dec 1, 2024
1 parent a28d32a commit f3bedb1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pages/scripts/extension-generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,13 @@ function displayExts(json) {
holderDiv.appendChild(genPin(name));
genText("ext-desc", info.credits);
genText("ext-log", info.date);
holderDiv.firstChild.style.filter = "url(#filter-1)";
holderDiv.animate([{ transform: "scale(1)" }, { transform: "scale(1.1)" }], { duration: 200, easing: "ease-in-out" });
holderDiv.style.transform = "scale(1.1)";
});
holderDiv.addEventListener("mouseleave", () => {
removeText();
holderDiv.firstChild.style.filter = "";
holderDiv.animate([{ transform: "scale(1.1)" }, { transform: "scale(1)" }], { duration: 200, easing: "ease-in-out" });
holderDiv.style.transform = "scale(1)";
const pin = holderDiv.lastChild;
Expand Down

0 comments on commit f3bedb1

Please sign in to comment.