Невозможно вручную выйти из полноэкранного режима после documentElement.requestFullscreen (); - PullRequest
2 голосов
/ 16 января 2020

У меня есть Twith Player на мой сайт. У меня также есть 'TheatreMode' . Когда я включаю TheatreMode , я использую documentElement.requestFullscreen(), который не открывается в полноэкранном режиме. RatheriIt открывается для указанной c части экран. После этого мне нужно нажимать вручную для полного экрана. Но я не могу выйти из полноэкранного режима вручную.

код для открытия полного экрана

  openStreamTheatreMode(): void {

if (!(<any>document).fullscreenElement &&    // alternative standard method
  !(<any>document).mozFullScreenElement && !(<any>document).webkitFullscreenElement) {  // current working methods
  if ((<any>document).documentElement.requestFullscreen) {
    (<any>document).documentElement.requestFullscreen();
  } else if ((<any>document).documentElement.mozRequestFullScreen) {
    (<any>document).documentElement.mozRequestFullScreen();
  } else if ((<any>document).documentElement.webkitRequestFullscreen) {
    (<any>document).documentElement.webkitRequestFullscreen();
  }
} else {
  this.typeStream.next('big');
}

}

TheatreMode

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...