Compare commits
3 commits
b6e57156db
...
989a45e6ae
Author | SHA1 | Date | |
---|---|---|---|
|
989a45e6ae | ||
|
a48b9ab983 | ||
|
8d3fc8689c |
3 changed files with 62 additions and 43 deletions
|
@ -70,39 +70,39 @@ var ExitFullscreenIcon = exit_fullscreen_solid_default
|
||||||
|
|
||||||
// Fullscreen
|
// Fullscreen
|
||||||
function Fullscreen() {
|
function Fullscreen() {
|
||||||
|
// Get Fullscreen Button
|
||||||
const Button_Fullscreen = document.querySelector("#zorn-player-" + PlayerName + " #vc-fullscreen");
|
const Button_Fullscreen = document.querySelector("#zorn-player-" + PlayerName + " #vc-fullscreen");
|
||||||
|
|
||||||
|
// Create and Call Functions
|
||||||
function Toggle_Fullscreen() {
|
function Toggle_Fullscreen() {
|
||||||
if (document.fullscreenElement) {
|
if (document.fullscreenElement) {
|
||||||
document.querySelector('#zorn-player-' + PlayerName + ' .vc-top').style.opacity = '0'
|
ExitFullscreen();
|
||||||
document.querySelector('#zorn-player-' + PlayerName + ' .video-controls').style.background = 'linear-gradient(0deg, rgba(0,0,0,0.7523460067620799) 0%, rgba(0,0,0,0) 15%, rgba(0,0,0,0) 94%, rgba(0,0,0,0) 100%)'
|
document.exitFullscreen()
|
||||||
Player.style.borderRadius = '12px'
|
}
|
||||||
VideoControls.style.bottom = '4px'
|
else if (document.webkitFullscreenElement) {
|
||||||
VideoControls.style.height = 'calc(100% - 28px)'
|
ExitFullscreen();
|
||||||
document.exitFullscreen();
|
document.webkitExitFullscreen()
|
||||||
} else if (document.webkitFullscreenElement) {
|
}
|
||||||
document.querySelector('#zorn-player-' + PlayerName + ' .vc-top').style.opacity = '0'
|
else if (VideoContainer.webkitRequestFullscreen) {
|
||||||
document.querySelector('#zorn-player-' + PlayerName + ' .video-controls').style.background = 'linear-gradient(0deg, rgba(0,0,0,0.7523460067620799) 0%, rgba(0,0,0,0) 15%, rgba(0,0,0,0) 94%, rgba(0,0,0,0) 100%)'
|
EnterFullscreen();
|
||||||
Player.style.borderRadius = '12px'
|
VideoContainer.webkitRequestFullscreen()
|
||||||
VideoControls.style.bottom = '4px'
|
}
|
||||||
VideoControls.style.height = 'calc(100% - 28px)'
|
else {
|
||||||
document.webkitExitFullscreen();
|
EnterFullscreen();
|
||||||
} else if (VideoContainer.webkitRequestFullscreen) {
|
VideoContainer.requestFullscreen()
|
||||||
document.querySelector('#zorn-player-' + PlayerName + ' .vc-top').style.opacity = '1'
|
|
||||||
document.querySelector('#zorn-player-' + PlayerName + ' .video-controls').style.background = 'linear-gradient(0deg, rgba(0, 0, 0, 0.753) 0%, rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 0) 91%, rgba(0, 0, 0, 1) 100%)'
|
|
||||||
Player.style.borderRadius = '0'
|
|
||||||
VideoControls.style.bottom = '0px'
|
|
||||||
VideoControls.style.height = '100%'
|
|
||||||
VideoContainer.webkitRequestFullscreen();
|
|
||||||
} else {
|
|
||||||
document.querySelector('#zorn-player-' + PlayerName + ' .vc-top').style.opacity = '1'
|
|
||||||
document.querySelector('#zorn-player-' + PlayerName + ' .video-controls').style.background = 'linear-gradient(0deg, rgba(0, 0, 0, 0.753) 0%, rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 0) 91%, rgba(0, 0, 0, 1) 100%)'
|
|
||||||
Player.style.borderRadius = '0'
|
|
||||||
VideoControls.style.bottom = '0px'
|
|
||||||
VideoControls.style.height = '100%'
|
|
||||||
VideoContainer.requestFullscreen();
|
|
||||||
}
|
}
|
||||||
Update_FullscreenButton()
|
Update_FullscreenButton()
|
||||||
}
|
}
|
||||||
|
function EnterFullscreen() {
|
||||||
|
VideoContainer.classList.add('zorn-fullscreen');
|
||||||
|
Update_FullscreenButton();
|
||||||
|
}
|
||||||
|
function ExitFullscreen() {
|
||||||
|
VideoContainer.classList.remove('zorn-fullscreen');
|
||||||
|
Update_FullscreenButton();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Button Event Listener
|
||||||
Button_Fullscreen.onclick = Toggle_Fullscreen;
|
Button_Fullscreen.onclick = Toggle_Fullscreen;
|
||||||
function Update_FullscreenButton() {
|
function Update_FullscreenButton() {
|
||||||
if (document.fullscreenElement) {
|
if (document.fullscreenElement) {
|
||||||
|
@ -113,10 +113,17 @@ function Fullscreen() {
|
||||||
Button_Fullscreen.innerHTML = `${ExitFullscreenIcon}`;
|
Button_Fullscreen.innerHTML = `${ExitFullscreenIcon}`;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Gesture
|
||||||
Player.addEventListener("dblclick", () => {
|
Player.addEventListener("dblclick", () => {
|
||||||
Toggle_Fullscreen()
|
Toggle_Fullscreen()
|
||||||
Update_FullscreenButton()
|
Update_FullscreenButton()
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Keyboard Shortcuts
|
||||||
|
var FullscreenHotkey = 'f'
|
||||||
|
function FullscreenKS(event) {const { key } = event;if (key === FullscreenHotkey) {Toggle_Fullscreen()}}
|
||||||
|
document.addEventListener("keyup", FullscreenKS);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Play/Pause
|
// Play/Pause
|
||||||
|
@ -307,16 +314,6 @@ function KeyboardShortcuts(events) {
|
||||||
} else {
|
} else {
|
||||||
volume.value = volume.dataset.volume;
|
volume.value = volume.dataset.volume;
|
||||||
}
|
}
|
||||||
} else if (key === Fullscreen_KeyboardShortcut) {
|
|
||||||
if (document.fullscreenElement) {
|
|
||||||
document.exitFullscreen();
|
|
||||||
} else if (document.webkitFullscreenElement) {
|
|
||||||
document.webkitExitFullscreen();
|
|
||||||
} else if (VideoContainer.webkitRequestFullscreen) {
|
|
||||||
VideoContainer.webkitRequestFullscreen();
|
|
||||||
} else {
|
|
||||||
VideoContainer.requestFullscreen();
|
|
||||||
}
|
|
||||||
} else if (key === SkipBack_KeyboardShortcut) {
|
} else if (key === SkipBack_KeyboardShortcut) {
|
||||||
Player.currentTime += -10;
|
Player.currentTime += -10;
|
||||||
} else if (key === SkipForth_KeyboardShortcut) {
|
} else if (key === SkipForth_KeyboardShortcut) {
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -37,15 +37,15 @@
|
||||||
.video-controls {
|
.video-controls {
|
||||||
background: linear-gradient(0deg, rgba(0, 0, 0, 0.7523460068) 0%, rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 0) 94%, rgb(0 0 0 / 0%) 100%);
|
background: linear-gradient(0deg, rgba(0, 0, 0, 0.7523460068) 0%, rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 0) 94%, rgb(0 0 0 / 0%) 100%);
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: 4px;
|
top: 0px;
|
||||||
left: 0px;
|
left: 0px;
|
||||||
width: calc(100% - 24px);
|
width: calc(100% - 24px);
|
||||||
|
height: calc(100% - 28px);
|
||||||
padding: 12px;
|
padding: 12px;
|
||||||
z-index: 5;
|
z-index: 4;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
height: calc(100% - 28px);
|
|
||||||
transition: 0.3s opacity;
|
transition: 0.3s opacity;
|
||||||
button {
|
button {
|
||||||
color: white;
|
color: white;
|
||||||
|
@ -62,10 +62,19 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.vc-top {
|
.vc-top {
|
||||||
margin-top: 12px;
|
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
transition: 0.3s opacity;
|
transition: 0.3s opacity;
|
||||||
|
p {
|
||||||
|
color: white;
|
||||||
|
backdrop-filter: blur(6px) contrast(0.9) brightness(0.5);
|
||||||
|
-webkit-backdrop-filter: blur(6px) contrast(0.9) brightness(0.5);
|
||||||
|
width: max-content;
|
||||||
|
padding: 6px 12px;
|
||||||
|
border-radius: 4px;
|
||||||
|
margin: 0px;
|
||||||
|
font-size: 24px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
#vc-gestures {
|
#vc-gestures {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
@ -232,6 +241,18 @@
|
||||||
transition: 0.3s opacity !important;
|
transition: 0.3s opacity !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.zorn-fullscreen {
|
||||||
|
.video-controls, video {
|
||||||
|
border-radius: 0 !important;
|
||||||
|
}
|
||||||
|
.video-controls {
|
||||||
|
height: calc(100% - 24px);
|
||||||
|
.vc-top {
|
||||||
|
opacity: 1 !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.big-present-button {
|
.big-present-button {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 50%;
|
top: 50%;
|
||||||
|
|
Loading…
Reference in a new issue