Kenboll

Kenboll's profile picture

Last active:

Mood:

View my: Blog | Forum Topics

SpaceHey URL:

https://spacehey.com/ken_king

Kenboll's Interests

General

Music

Movies

Television

Books

Heroes

Kenboll's Latest Blog Entries [View Blog]

There are no Blog Entries yet.

Kenboll's Blurbs

About me:

Who I'd like to meet:

Kenboll's Friend Space

[view all]

Kenboll has 3 friends.

Kenboll's Friends Comments

Displaying 0 of 0 comments ( View all | Add Comment )

S A T E L L A
— witch of envy —
♦ activar sonido ♦
el perfil se abrirá solo...
Witch's Love
Re:Zero OST
var playing = false; var audioReady = false; function activarAudio() { var btn = document.getElementById('s-audiobn'); var intro = document.getElementById('snd-intro'); if (!audioReady) { audioReady = true; intro.play().then(function() { intro.pause(); intro.currentTime = 0; if (btn) { btn.textContent = '♦ sonido activado ♦'; btn.style.color = '#88ff88'; btn.style.borderColor = 'rgba(80,200,80,0.5)'; btn.style.background = 'rgba(20,80,20,0.4)'; } }).catch(function() { if (btn) btn.textContent = '♦ toca de nuevo ♦'; }); } } setTimeout(function() { if (audioReady) { try { document.getElementById('snd-intro').play(); } catch(e) {} } }, 8000); function toggleMusic() { var icon = document.getElementById('s-music-icon'); var bars = document.querySelectorAll('.s-bar'); var bg = document.getElementById('snd-bg'); if (!playing) { try { bg.play(); } catch(e) {} icon.textContent = '❚❚'; bars.forEach(function(b) { b.classList.add('active'); }); playing = true; } else { bg.pause(); icon.textContent = '▶'; bars.forEach(function(b) { b.classList.remove('active'); }); playing = false; } }