summaryrefslogtreecommitdiffstats
path: root/content/script.js
blob: dd7729d464547b6d54dc1d63bd63ab6104229545 (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
function createSnowFlake() {
	const snowFlake = document.createElementNS("http://www.w3.org/2000/svg", "svg");
    const snowFlakeInner = document.createElementNS("http://www.w3.org/2000/svg", "use");

    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() * 100 + '%';
	snowFlake.style.animationDuration = (Math.random() * 3 + 2) * 1000 + 'ms';
	snowFlake.style.opacity = Math.random();
    
    snowFlake.addEventListener("animationend", () => snowFlake.remove());

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

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

createSnowFlake();