2016-12-08 7 views
-2

私のウェブサイトをトグルしてフルスクリーンにするボタンを作りたいと思います。私はどのようにするのか分からない?jsフルスクリーントグルを作る方法

+2

から育て検索の少しは検索のパワーを使用しているものに見えます – Endless

答えて

5

google

function toggleFullScreen() { 
    if (!document.fullscreenElement) { 
     document.documentElement.requestFullscreen(); 
    } else { 
    if (document.exitFullscreen) { 
     document.exitFullscreen(); 
    } 
    } 
} 
関連する問題