blob: 1879474753f75b7588b9ca729ebd718324565c72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
const playerContainer = document.getElementById("full-video-player");
const playerVideo = document.getElementById("full-video-player-video");
const playerCaption = document.getElementById("full-video-player-caption");
function closeFullPlayer() {
playerContainer.style.display = "none";
playerVideo.pause();
playerVideo.currentTime = 0;
}
function loadVideo(url, caption) {
playerContainer.style.display = "flex";
playerVideo.src = url;
playerCaption.innerHTML = caption;
}
|