Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Simple to use Fullscreen API with Promise for cross-browser.

License

NotificationsYou must be signed in to change notification settings

shisama/toggle-fullscreen

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Promise basedFullscreen API for cross-browser.

GitHub licensenpm

asyncfunction(){constelement=document.querySelector('some element');awaittoggleFullscreen(element);awaitotherFunc();}

Install

npm install --save toggle-fullscreen

API

toggleFullscreen(target) ⇒Promise<>

Requests Fullscreen API.Request to exit fullscreen mode if target is already fullscreen.

ParamTypeDescription
targetElementtarget element to change fullscreen

Usage:

vartarget=document.querySelector('#target');toggleFullscreen(target);

For jQuery:

$('#target').on('click',event=>{toggleFullscreen(event.target);});

fullscreenChange(callback) ⇒Promise<>

Add a listener for when the browser switches in and out of fullscreen.

ParamTypeDescription
callbackfunctionfunction to be called when the browser switches in and out of fullscreen

Usage:

fullscreenChange(function(){console.log('switch fullscreen');});

isFullscreen() ⇒Boolean

Check whether fullscreen is active.Usage:

if(isFullscreen()){console.log('fullscreen is active');}else{console.log('fullscreen is not active');}

Example

importtoggleFullscreen,{fullscreenChange,isFullscreen,}from'toggle-fullscreen';onChangeFullScreen=()=>{constelement=document.getElementById('something');toggleFullscreen(element).then(()=>{returnfullscreenChange(()=>{constisFullScreen=isFullscreen();if(isFullScreen){// any process in fullscreen mode// e.g.document.addEventListener('keydown', keydownFunction);}else{// any process in non-fullscreen mode// e.g.document.removeEventListener('keydown', keydownFunction);}});}).then(()=>{console.log('successed!');}).catch(()=>{console.log('failed!');});};

Or use Promise.all()

importtoggleFullscreen,{fullscreenChange,isFullscreen,}from'toggle-fullscreen';onChangeFullScreen=()=>{// target elementconstelement=document.getElementById('something');// callback function when fullscreen change is detected.constcallback=()=>{constisFullScreen=isFullscreen();this.setState({isFullScreen:isFullScreen});if(isFullScreen){document.addEventListener('keydown',this.keydownEvent);element.style.width='70%';}else{document.removeEventListener('keydown',this.keydownEvent);element.style.width='100%';}};// execute toggle-fullscreen and add listener when fullscreen change detected asynchronouslyPromise.all([toggleFullscreen(element),fullscreenChange(callback)]);};

For async/await:

importtoggleFullscreen,{fullscreenChange,isFullscreen,}from'toggle-fullscreen';onChangeFullScreen=async()=>{constelement=document.getElementById('something');awaittoggleFullscreen(element);awaitfullscreenChange(()=>{constisFullScreen=isFullscreen();if(isFullScreen){// any process in fullscreen mode// e.g.document.addEventListener('keydown', keydownFunction);}else{// any process in non-fullscreen mode// e.g.document.removeEventListener('keydown', keydownFunction);}});console.log('successed!');};

For callback (use if something is wrong with Promise) :

consttoggleFullscreen=require('toggle-fullscreen');onChangeFullScreen=function(){constelement=document.getElementById('something');toggleFullscreen(element,function(isFullScreen){if(isFullScreen){// any process in fullscreen mode// e.g.document.addEventListener('keydown', this.keydownEvent);}else{// any process in non-fullscreen mode// e.g.document.removeEventListener('keydown', this.keydownEvent);}});};

Support

  • Chrome@latest
  • Firefox@latest
  • Safari@latest
  • MSEdge@latest
  • IE11

License

This project is licensed under the terms of theMIT license

About

Simple to use Fullscreen API with Promise for cross-browser.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp