mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-03 21:17:37 +03:00
fix: only autoplay videos if visible
This commit is contained in:
parent
3677ca10e2
commit
e377f47caf
1 changed files with 12 additions and 1 deletions
|
@ -94,10 +94,21 @@
|
||||||
videoElement.parentNode.appendChild(qualitySelector);
|
videoElement.parentNode.appendChild(qualitySelector);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IntersectionObserver to autoplay/pause video based on visibility
|
||||||
|
var autoplayObserver = new IntersectionObserver(function(entries) {
|
||||||
|
entries.forEach(function(entry) {
|
||||||
|
if (entry.isIntersecting) {
|
||||||
|
newVideo.play();
|
||||||
|
} else {
|
||||||
|
newVideo.pause();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}, { threshold: 0.5 }); // Adjust the threshold as needed
|
||||||
|
|
||||||
newVideo.addEventListener('play', initializeHls);
|
newVideo.addEventListener('play', initializeHls);
|
||||||
|
|
||||||
if (autoplay) {
|
if (autoplay) {
|
||||||
newVideo.play();
|
autoplayObserver.observe(newVideo);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue