JavaScript を使用してポップアップ ウィンドウを画面の中央に配置するにはどうすればよいですか?

Mary-Kate Olsen
リリース: 2024-10-30 10:30:02
オリジナル
862 人が閲覧しました

How Can I Center a Popup Window on the Screen Using JavaScript?

ポップアップ ウィンドウを中央に配置する

ポップアップ ウィンドウを画面上で中央に配置するには、JavaScript の window.open 関数を使用します。ウィンドウが表示される正確な座標 (x と y) は、現在の画面解像度によって異なります。

クロスプラットフォーム ソリューション

次のソリューションは両方で機能します。シングル モニターとデュアル モニターのセットアップ:

<code class="js">const popupCenter = ({ url, title, w, h }) => {
  // Adjust for dual-screen positions
  const dualScreenLeft = window.screenLeft || window.screenX;
  const dualScreenTop = window.screenTop || window.screenY;

  // Get the screen size
  const width = window.innerWidth || document.documentElement.clientWidth || screen.width;
  const height = window.innerHeight || document.documentElement.clientHeight || screen.height;

  // Calculate the scaling factor
  const systemZoom = width / window.screen.availWidth;

  // Calculate the window's position
  const left = (width - w) / 2 / systemZoom + dualScreenLeft;
  const top = (height - h) / 2 / systemZoom + dualScreenTop;

  // Open the popup window
  const newWindow = window.open(url, title, `
    scrollbars=yes,
    width=${w / systemZoom},
    height=${h / systemZoom},
    top=${top},
    left=${left}
  `);

  // Focus the new window
  if (window.focus) newWindow.focus();
};</code>
ログイン後にコピー

使用例

<code class="js">popupCenter({
  url: 'http://www.xtf.dk',
  title: 'xtf',
  w: 900,
  h: 500,
});</code>
ログイン後にコピー

クレジット

このソリューションは適応されていますhttp://www.xtf.dk/2011/08/center-new-popup-window-even-on.html より。

以上がJavaScript を使用してポップアップ ウィンドウを画面の中央に配置するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート