function requestFulScreen() {
// First - before requesting full screen - intentionally indicating to the video element to display it's controls.
// If we don't do this it appears that at first time full screen the video element thinks it's still not full screen
// resulting in the poor user getting stuck in full screen mode.
video.controls = !app.isFullScreen();
if (app.isFullScreen()) {
app.exitFullScreen();
} else {
app.requestFullScreen(video);
}
}
У меня есть вышеуказанный метод для полноэкранного видео. Однако, если я нажимаю «Свернуть», когда я нахожусь в полноэкранном режиме, страница не сворачивается, а просто выходит из полноэкранного режима. Может быть проблема с WinJs? Или существует исправление?