(() => { const frames = [ "https://i.ibb.co/Kz5wZPqw/4.png", "https://i.ibb.co/yvK2mjQ/3.png", "https://i.ibb.co/Kz5wZPqw/4.png", "https://i.ibb.co/SDXsykQ1/1.png" ]; let i = 0; function setFavicon(src) { let link = document.querySelector('link[rel*="icon"]'); if (!link) { link = document.createElement("link"); link.rel = "icon"; document.head.appendChild(link); } link.href = src + "?v=" + Date.now(); } setFavicon(frames[0]); setInterval(() => { i = (i + 1) % frames.length; setFavicon(frames[i]); }, 100); })();
✦˚⋆.✧✦˚⋆✧.✦⋆˚✦✧.⋆✦˚✧⋆.✦✧˚⋆✦.✧⋆˚✦✧.⋆✦˚✧⋆.✦✧˚⋆✦.✧⋆˚✦✧.⋆✦˚✧★★★★
document.addEventListener("click", (e) => { for (let i = 0; i < 16; i++) { const sparkle = document.createElement("div"); sparkle.textContent = "★"; const opacity = 0.25 + Math.random() * 0.75; const size = 10 + Math.random() * 12; sparkle.style.position = "fixed"; sparkle.style.left = e.clientX + "px"; sparkle.style.top = e.clientY + "px"; sparkle.style.pointerEvents = "none"; sparkle.style.userSelect = "none"; sparkle.style.fontSize = size + "px"; sparkle.style.color = "#fff"; sparkle.style.opacity = opacity; sparkle.style.textShadow = "0 0 8px rgba(255,255,255,.8)"; sparkle.style.zIndex = "999999"; document.body.appendChild(sparkle); const angle = Math.random() * Math.PI * 2; const distance = 50 + Math.random() * 90; const rotate = -180 + Math.random() * 360; sparkle.animate([ { transform: "translate(0,0) scale(1) rotate(0deg)", opacity: opacity }, { transform: `translate(${Math.cos(angle) * distance}px, ${Math.sin(angle) * distance}px) scale(.4) rotate(${rotate}deg)`, opacity: 0 } ], { duration: 2200, easing: "cubic-bezier(.25,.6,.2,1)", fill: "forwards" }); setTimeout(() => sparkle.remove(), 2200); } });
@media (max-width: 768px) { *:not(#image01):not(#image01 *) :not(.dc-heart):not(.dc-heart *) :not(#buttons01):not(#buttons01 *) { border-radius: 18px !important; } }
document.body.appendChild(document.getElementById('heart-anchor')); document.addEventListener("DOMContentLoaded", function () { var card = document.createElement("a"); card.href = "http://elaska.uwu.ai"; card.className = "floating-notif-card"; card.innerHTML = ` `; document.body.appendChild(card); });