Skip to content
本章目录

【浏览器操作 —— toggleFull】

功能: 开启或者关闭浏览器全屏状态。

1-函数引入

js
  import { toggleFull } from 'tj-jstools'
1

2-函数声明

ts
declare const toggleFull: (el?: Element, options?: FullscreenOptions) => Promise<void>;
1

3-使用示例

html
 <button onclick="toggleFull()">toggleFullScreen</button>
1

该方法开启全屏时触发的是openFull方法,关闭时触发的是closeFull方法, 所以该方法不支持自动加载,需要用户主动触发!

关于参数和 openFull 方法使用一致,可点击查看详情,这里不做赘述!

Released under the MIT License.