1
Fork 0

remove border radius when da video is full screen owowowowowowowowo

This commit is contained in:
Ashley 2023-03-10 15:37:14 +00:00
parent 290ed76a02
commit b7d9559b1e

View file

@ -1443,6 +1443,21 @@ links.forEach(link => {
</script>
<script>
const videoElement = document.getElementById("video");
// Listen for full screen change events on the video element
videoElement.addEventListener("fullscreenchange", () => {
if (document.fullscreenElement === videoElement) {
// If the video element is in full screen mode, remove the border radius
videoElement.style.borderRadius = "0em ";
} else {
// If the video element exits full screen mode, restore the border radius
videoElement.style.borderRadius = "16px";
}
});
</script>
<% if (!optout) { %>
<!-- MORE INFO :https://poketube.fun/privacy -->
<!-- MORE INFO :https://poketube.fun/privacy -->