Add dynamic iframe for background music across multiple pages

This commit is contained in:
2025-04-15 13:37:20 +00:00
parent 44c62f1882
commit f42a879bf1
4 changed files with 47 additions and 7 deletions
+9
View File
@@ -144,6 +144,15 @@
return null;
}
// Add the iframe dynamically if it doesn't already exist
if (!document.getElementById('musicIframe')) {
const iframe = document.createElement('iframe');
iframe.src = 'music.html';
iframe.id = 'musicIframe';
iframe.style.display = 'none';
document.body.appendChild(iframe);
}
// Ensure animations are enabled by default
if (getCookie('gameAnimation') === null) {
setCookie('gameAnimation', 'true', 30); // Default to animations enabled