Open webpage in fullscreen in Safari on iOS

前端 未结 2 1537
执念已碎
执念已碎 2021-01-01 20:43

There is a fullscreen mode in Safari on iOS. Is it possible to activate this through javascript or similar?

Thanks

2条回答
  •  独厮守ぢ
    2021-01-01 21:24

    Aftier iOS >= 12, There is only way to toggle to fullscreen through native API in Safari.

        if (document.webkitFullscreenElement) {
          document.webkitCancelFullScreen();
        } else {
          const el = document.documentElement;
          el.webkitRequestFullscreen(Element.ALLOW_KEYBOARD_INPUT);
        }
    

提交回复
热议问题