Template:Home/NowPlaying2: Difference between revisions

Template page
No edit summary
Tag: Reverted
No edit summary
Tag: Manual revert
 
(19 intermediate revisions by the same user not shown)
Line 6: Line 6:
<div id="now-playing" style="box-shadow: 0px 0px 14px rgb(192 14 170 / 75%), inset 0 0 14px rgb(246 21 115);">
<div id="now-playing" style="box-shadow: 0px 0px 14px rgb(192 14 170 / 75%), inset 0 0 14px rgb(246 21 115);">
<h2>Now Playing</h2>
<h2>Now Playing</h2>
 
{{#widget:Video|url=/images/4/46/SheWasDreaminOfBoys.mp4|caption=}}
<html>
<html>
<br>
<br>
Line 19: Line 19:
"{{{video_id2}}}",
"{{{video_id2}}}",
}}
}}
];
<html>
<html>
];
var shuffledList = videoIdList.sort(() => Math.random() - 0.5);
var shuffledList = videoIdList.sort(() => Math.random() - 0.5);
var button = document.querySelector("#ytButton");
var button = document.querySelector("#ytButton");
var player = document.querySelector("#video-source");
var player = document.querySelector("#video-source");
var video = document.getElementById('content-video');
button.addEventListener("click", playNext);
button.addEventListener("click", playNext);


Line 29: Line 30:
   var justPlayedVideo = shuffledList.shift();
   var justPlayedVideo = shuffledList.shift();
   shuffledList.push(justPlayedVideo);
   shuffledList.push(justPlayedVideo);
   player.src = shuffledList[0];
   player.src = shuffledList[0];
  video.load()
  video.play()
}
}



Latest revision as of 11:39, 13 September 2023

Now Playing