@elaska
loadingâĻ
loadingâĻ
X
X
Instagram
Instagram
Twitch
Twitch
Discord
Discord
Throne
Throne
LIVE FEED
Fansly
Now
Free to follow. Let's chat?
â back
thank you for being here âĄ
X
īš°
Instagram
īš°
Twitch
īš°
Fansly
īš°
YouTube (Alt)
īš°
next âē
loading. . .
under construction
welcome to my online realm
âĄ
elaska.exe
â
online
â
members
join
(async () => { const onlineEl = document.getElementById('dc-online'); const membersEl = document.getElementById('dc-members'); const dot = document.getElementById('dc-dot'); try { const r = await fetch( 'https://discord.com/api/v9/invites/e4wchcpwkC?with_counts=true', { cache: 'no-store' } ); if (!r.ok) throw 0; const j = await r.json(); const online = j.approximate_presence_count || j.presence_count || (j.guild && j.guild.presence_count); const members = j.approximate_member_count || j.member_count || (j.guild && j.guild.member_count); if (online != null && members != null) { onlineEl.textContent = online; membersEl.textContent = members; dot.style.background = '#a0a0a0'; return; } throw 0; } catch (e) { onlineEl.textContent = 'offline'; membersEl.textContent = 'â'; dot.style.background = '#9ca3af'; } })();
;(function(){ const css = ` #player { position: fixed !important; bottom: 20px !important; right: 20px !important; z-index: 99999 !important; display: flex; align-items: center; gap: 8px; background: transparent !important; padding: 6px 10px; border-radius: 12px; } #player button { width: 26px; height: 26px; display: grid; place-items: center; background: none; border: none; color: #fff; cursor: pointer; padding: 0; } #player svg { fill: #fff; display: block; } .play { width: 15px; height: 15px; } .icon { width: 16px; height: 16px; } #player input[type="range"] { width: 90px; -webkit-appearance: none; background: transparent; height: 16px; cursor: pointer; } #player input[type="range"]::-webkit-slider-runnable-track { height: 3px; background: #fff; border-radius: 999px; } #player input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 14px; height: 14px; background: #fff; border-radius: 50%; margin-top: -5.5px; } #player input[type="range"]::-moz-range-track { height: 3px; background: #fff; border: none; border-radius: 999px; } #player input[type="range"]::-moz-range-thumb { width: 14px; height: 14px; background: #fff; border: none; border-radius: 50%; } @media (max-width: 480px) { #player { transform: scale(0.8); transform-origin: bottom right; bottom: 10px !important; right: 10px !important; } } `; const st = document.createElement('style'); st.textContent = css; document.head.appendChild(st); const ui = document.createElement('div'); ui.id = 'player'; ui.innerHTML = `
`; document.body.appendChild(ui); const audio = document.getElementById('audio'); const playBtn = document.getElementById('play'); const vol = document.getElementById('vol'); audio.volume = parseFloat(vol.value); playBtn.addEventListener('click', () => { if (audio.paused) { audio.play(); playBtn.innerHTML = '
'; } else { audio.pause(); playBtn.innerHTML = '
'; } }); vol.addEventListener('input', () => { audio.volume = parseFloat(vol.value); }); })();