Added "muted" to the video autoplay feature

This commit is contained in:
VA3HDL 2024-06-11 11:27:41 -04:00
parent 6c60b35944
commit bb0c2ae342
1 changed files with 2 additions and 1 deletions

View File

@ -299,7 +299,7 @@ db 8D Y8b d8 88 `88. .88. 88 88 db 8D
help += "Double click again to close full screen view.\n"; help += "Double click again to close full screen view.\n";
help += "Right click on an image to display the next one.\n"; help += "Right click on an image to display the next one.\n";
help += "The content refreshes automatically every 5 minutes.\n"; help += "The content refreshes automatically every 5 minutes.\n";
help += "Images rotates every 30 seconds.\n"; help += "Images rotates every 30 seconds automatically.\n";
const videoExtensions = [".mp4", ".webm", ".ogg", ".ogv"]; const videoExtensions = [".mp4", ".webm", ".ogg", ".ogv"];
@ -464,6 +464,7 @@ db 8D Y8b d8 88 `88. .88. 88 88 db 8D
video.id = `Video${index}`; video.id = `Video${index}`;
video.classList.add("media", "hidden"); video.classList.add("media", "hidden");
video.controls = true; video.controls = true;
video.muted = true;
video.autoplay = true; video.autoplay = true;
video.loop = true; video.loop = true;
const source = document.createElement("source"); const source = document.createElement("source");