Landscape mode for mobile on fullscreen videos; autoplay

This commit is contained in:
2021-09-20 13:06:18 +02:00
parent e10e343b3b
commit a7b631231b
7 changed files with 13 additions and 3 deletions

View File

@@ -72,4 +72,13 @@ if (window.location.href.includes('credits')) {
document.addEventListener('readystatechange', () => {
Farapp.slideshow();
});
}
/**
* Landscape orientation when fullscreen?!
* @todo Reliable check for mobile???
*/
if ("maxTouchPoints" in navigator) {
document.addEventListener('fullscreenchange', () => {
screen.orientation.lock('landscape');
});
}