[JavaScript] ディスプレイ中央表示させる

1 min read
hiroweb developer

コード

function openCenteringWindow(url, windowWidth = 480, windowHeight = 450) {
  const windowLeft = window.screen.width / 2 - windowWidth / 2;
  const windowTop = window.screen.height / 2 - windowHeight / 2;

  const windowOptions = `width=${windowWidth}, height=${windowHeight}, top=${windowTop}, left=${windowLeft}`;

  window.open(url, "", windowOptions);
}

// 使用例
openCenteringWindow("https://b.0218.jp/", 480, 480);