Web ページを KIOSK モードで開いています。Web ページの最小化、サイズ変更ボタン、閉じるボタンが必要です。開いたページが全画面モードでない場合、機能を実現できます。
誰かが知っていれば、フルスクリーンモードで同じことを達成するのを手伝ってください。
通常モードで正常に動作するコード スニペットを次に示します。
minflag = false;
function closeWindow()
{
window.close();
}
function minimizeWindow()
{
window.moveTo(-2000,-2000);
}
function resizeWindow()
{
var innerWidth = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;
var innerHeight = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight;
var targetWidth = 800;
var targetHeight = 600;
if(!minflag){
window.resizeBy(targetWidth-innerWidth, targetHeight-innerHeight);
minflag=true;
}
else{
window.resizeBy(targetWidth+innerWidth, targetHeight+innerHeight);
minflag=false;
}
}