mirror of
https://github.com/jbowdre/lolz.git
synced 2024-11-09 16:12:19 +00:00
33 lines
No EOL
1.3 KiB
HTML
33 lines
No EOL
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css" integrity="sha512-1sCRPdkRXhBV2PBLUdRb4tMg1w2YPf37qatUFeS7zlBy7jJI8Lf4VHwWfZZfpXtYSLy85pkm9GaYVYMfw5BC1A==" crossorigin="anonymous">
|
|
<title>MusicThread Test</title>
|
|
<script>
|
|
// replace theme-song placeholder text when the musicthread response comes in
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
const themeSongContainer = document.getElementById('theme-song');
|
|
if (themeSongContainer) {
|
|
const observer = new MutationObserver(function(mutations) {
|
|
mutations.forEach(function(mutation) {
|
|
if (mutation.type === 'childList' && themeSongContainer.childNodes.length > 2) {
|
|
themeSongContainer.removeChild(themeSongContainer.firstChild);
|
|
observer.disconnect();
|
|
}
|
|
});
|
|
});
|
|
observer.observe(themeSongContainer, { childList: true });
|
|
} else {
|
|
console.Warn('Theme song container not found');
|
|
}
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1>Now Playing</h1>
|
|
<ul>
|
|
<li><span id="theme-song">Silence<script src="https://res.jbowdre.lol/js/theme-song.js?id=2aVjZUocjk96LELFbV5JvJjm14v&plain=true" defer></script></span><i class='fa-solid fa-headphones'></i></li>
|
|
</ul>
|
|
</body>
|
|
</html> |