[VanillaJS]画面の中央にポップアップウィンドウを表示する


function openCenter(doc, win, w, h){
  var left = (screen.availWidth - w) / 2;
  var top = (screen.availHeight - h) / 2;
  var opt = `left = ${left}, top = ${top}, width = ${w}, height = ${h}`
  window.open(doc,win,opt);
}
openCenter("notice.html","pop",500,400);
screen.availWidthscreen.availHeight:UI領域(タスクバー)以外のブラウザで使用可能な領域