mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 04:08:39 +01:00
fix seekbar on fulscreen
This commit is contained in:
parent
f124efc8e3
commit
47833803b2
1 changed files with 13 additions and 0 deletions
|
@ -755,6 +755,17 @@ background-color: #0000;
|
|||
const timestamps = document.getElementById("timestamps");
|
||||
timestamps.innerText = `${csts(video.currentTime)}/${csts(video.duration)}`;
|
||||
});
|
||||
setTimeout(()=>{
|
||||
video.addEventListener("seeking", (event) => {
|
||||
if(!didFirstTimePlay) return;
|
||||
if(qua != "medium") {
|
||||
video.pause()
|
||||
canPlayPause = false;
|
||||
aud.pause()
|
||||
aud.currentTime = event.target.currentTime
|
||||
}
|
||||
});
|
||||
}, 200)
|
||||
seekbar.addEventListener("input", (event) => {
|
||||
video.pause()
|
||||
canPlayPause = false;
|
||||
|
@ -788,6 +799,8 @@ background-color: #0000;
|
|||
playPauseButton.addEventListener("click", () => {
|
||||
toggleVideo()
|
||||
});
|
||||
video.addEventListener("pause", ()=>{if(qua != "medium") {aud.pause()}});
|
||||
video.addEventListener("play", ()=>{if(qua != "medium") {aud.play()}})
|
||||
video.addEventListener("click", toggleVideo);
|
||||
video.addEventListener("dblclick", () => {
|
||||
document.documentElement.requestFullscreen();
|
||||
|
|
Loading…
Reference in a new issue