Ravina & Apar, Strana 7

Nejprodávanější

Původně: 225 Kč  (–20 %)
179 Kč
Původně: 225 Kč  (–20 %)
179 Kč
Původně: 225 Kč  (–20 %)
179 Kč
Původně: 225 Kč  (–20 %)
179 Kč
document.addEventListener("DOMContentLoaded", function () { const sparkleContainer = document.createElement("div"); sparkleContainer.style.position = "fixed"; sparkleContainer.style.top = "0"; sparkleContainer.style.left = "0"; sparkleContainer.style.width = "100%"; sparkleContainer.style.height = "100%"; sparkleContainer.style.pointerEvents = "none"; sparkleContainer.style.overflow = "hidden"; sparkleContainer.style.zIndex = "999999"; document.body.appendChild(sparkleContainer); function createSparkle() { const sparkle = document.createElement("div"); sparkle.style.position = "absolute"; sparkle.style.width = "4px"; sparkle.style.height = "4px"; sparkle.style.borderRadius = "50%"; sparkle.style.background = "radial-gradient(circle, #ffffff 0%, #cfcfcf 60%, transparent 100%)"; sparkle.style.opacity = (0.4 + Math.random() * 0.3).toString(); sparkle.style.left = Math.random() * 100 + "vw"; sparkle.style.top = "-5vh"; const duration = 6 + Math.random() * 6; // pomalé padání sparkle.style.transition = `transform ${duration}s linear, opacity ${duration}s linear`; sparkleContainer.appendChild(sparkle); requestAnimationFrame(() => { sparkle.style.transform = `translateY(110vh) translateX(${(Math.random() * 20) - 10}vw)`; sparkle.style.opacity = "0"; }); setTimeout(() => sparkle.remove(), duration * 1000); } // malá intenzita setInterval(createSparkle, 450); });