finish last fm music

This commit is contained in:
zyqunix 2025-05-11 14:19:14 +02:00
parent 5fb3d79c70
commit 537161e621
No known key found for this signature in database
GPG key ID: 134A8DEEA83B80E6
3 changed files with 30 additions and 4 deletions

View file

@ -236,3 +236,13 @@ setInterval(() => {
fetchSong();
}, 60000)
document.getElementById('banan').addEventListener('click', function() {
document.getElementById('music-pop').style.visibility = 'visible';
document.getElementById('music-pop').style.opacity = '1';
})
document.getElementById('close').addEventListener('click', function() {
document.getElementById('music-pop').style.opacity = '0';
document.getElementById('music-pop').style.visibility = 'hidden';
})