Closed3

VueUseのuseFullscreenを読む

junarajunara

toggleで全画面へのenterとexitをトグル。

https://github.com/vueuse/vueuse/blob/c9842b267587d53f90f351e94a8b2fea439589de/packages/core/useFullscreen/index.ts#L150-L152

enterは、以下の順でフルスクリーン化する

  • 全画面APIをサポートしているか?していないならば早期リターン
  • 現在全画面化しているか?全画面中なら、一旦終了する
  • 全画面化するtargetを取得。(targetが指定されていない場合は全体(document.querySelector('html')が指定される))
  • targetを全画面化する( target[requestMethod.value]

https://github.com/vueuse/vueuse/blob/c9842b267587d53f90f351e94a8b2fea439589de/packages/core/useFullscreen/index.ts#L136-L148

exitはenterとほぼ同様。
https://github.com/vueuse/vueuse/blob/c9842b267587d53f90f351e94a8b2fea439589de/packages/core/useFullscreen/index.ts#L117-L131

このスクラップは2023/04/24にクローズされました