summaryrefslogtreecommitdiffstats
path: root/content/script.js
blob: 78b18b08c40ce46001d53dce457f8621ef6a5afc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
function createSnowFlake() {
	const snowFlake = document.createElementNS("http://www.w3.org/2000/svg", "svg");
    const snowFlakeInner = document.createElementNS("http://www.w3.org/2000/svg", "use");

    const aniDuration = (Math.random() * 3 + 2) * 1000;

    snowFlakeInner.setAttribute("href", "/symbols.svg#icon-asterisk");

    snowFlake.classList.add("o-icon", "o-icon--snow");
    snowFlake.setAttribute("aria-hidden", "true");

	snowFlake.style.fontSize = Math.random() * 0.5 + 0.7 + 'em';
	snowFlake.style.left = Math.random() * window.innerWidth + 'px';
	snowFlake.style.animationDuration = aniDuration + 'ms';
	snowFlake.style.opacity = Math.random();

    snowFlake.appendChild(snowFlakeInner);
	document.body.appendChild(snowFlake);

	setTimeout(() => snowFlake.remove(), aniDuration);
    setTimeout(() => createSnowFlake(), 50 / Math.log10(window.innerWidth / 1000 + 1));
}

createSnowFlake();