首页 > web前端 > js教程 > 如何在单显示器和双显示器设置中使弹出窗口在屏幕上居中?

如何在单显示器和双显示器设置中使弹出窗口在屏幕上居中?

Mary-Kate Olsen
发布: 2024-10-31 19:11:02
原创
485 人浏览过

How to Center a Popup Window on Screen in Both Single and Dual Monitor Setups?

如何使弹出窗口在屏幕上居中

要使弹出窗口在屏幕上居中,我们可以利用 JavaScript 的 window.open 函数和一些额外的计算来确定准确的位置基于当前屏幕分辨率的 x 和 y 坐标。

单/双显示器功能

对于单显示器和双显示器设置,以下函数可以有效地将弹出窗口水平居中,同时考虑到它没有完全最大化的可能性:

<code class="javascript">const popupCenter = ({url, title, w, h}) => {
  // Adjust for dual-screen position
  const dualScreenLeft = window.screenLeft !== undefined ? window.screenLeft : window.screenX;
  const dualScreenTop = window.screenTop !== undefined ? window.screenTop : window.screenY;

  // Calculate available screen dimensions
  const width = window.innerWidth || document.documentElement.clientWidth || screen.width;
  const height = window.innerHeight || document.documentElement.clientHeight || screen.height;

  // Adjust for system zoom
  const systemZoom = width / window.screen.availWidth;

  // Calculate centered coordinates
  const left = (width - w) / 2 / systemZoom + dualScreenLeft
  const top = (height - h) / 2 / systemZoom + dualScreenTop

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

  // Bring the new window to focus
  if (window.focus) newWindow.focus();
}</code>
登录后复制

使用示例

以屏幕分辨率 900x500 居中弹出窗口,标题为“XTF”:

<code class="javascript">popupCenter({url: 'http://www.xtf.dk', title: 'XTF', w: 900, h: 500});</code>
登录后复制

以上是如何在单显示器和双显示器设置中使弹出窗口在屏幕上居中?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板