Инструменты пользователя

Инструменты сайта


works:programmer:js:fullscreen

Переход в полноэкранный режим

export function getFullscreenElement() {
    return document.fullscreenElement
        || document.webkitFullscreenElement
        || document.mozFullscreenElement
        || document.msFullscreenElement;
}
 
export function doFullscreen() {
    if (getFullscreenElement()) {
        document.exitFullscreen();
    } else {
        document.documentElement.requestFullscreen().catch(err => console.error);
    }
}
works/programmer/js/fullscreen.txt · Последнее изменение: 2022/02/04 04:14 — 127.0.0.1

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki