Created
February 20, 2020 08:31
-
-
Save tonkotsuboy/9074b4adc00c1e8820ab0a0a96f75518 to your computer and use it in GitHub Desktop.
FireYourSite.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const linkElement = document.createElement("link"); | |
| linkElement.rel = "stylesheet"; | |
| linkElement.href = | |
| "https://fonts.googleapis.com/css?family=Noto+Sans+JP:900&display=swap&effect=fire-animation"; | |
| document.head.insertAdjacentElement("beforeend", linkElement); | |
| for (const childElement of document.body.querySelectorAll("*")) { | |
| childElement.style.fontFamily = `"Noto Sans JP", sans-serif`; | |
| childElement.classList.add("font-effect-fire-animation"); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment