Skip to content

Instantly share code, notes, and snippets.

@NoCtrlZ1110
Created July 20, 2021 14:14
Show Gist options
  • Save NoCtrlZ1110/ca5a19c0c617cb52e17c0b090bfb37c6 to your computer and use it in GitHub Desktop.
Save NoCtrlZ1110/ca5a19c0c617cb52e17c0b090bfb37c6 to your computer and use it in GitHub Desktop.
snow on your browser. try pasting these code into console
const body = document.getElementsByTagName("body");
const snowflakesContainer = document.createElement("div");
snowflakesContainer.className = "snowflakes";
snowflakesContainer.setAttribute("aria-hidden", "true");
const snowflake = document.createElement("div");
snowflake.className = "snowflake";
snowflake.innerHTML = "❆";
for (let i = 0; i < 12; i++) {
snowflakesContainer.appendChild(snowflake.cloneNode(true));
}
body[0]?.prepend(snowflakesContainer);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment