如何使用JavaScript 將彈出視窗置於使用者螢幕的中心
要讓使用window.open 函數開啟的彈出視窗居中,請執行以下操作:重要的是要考慮使用者目前的螢幕解析度。這是一個有效地將視窗集中在單顯示器和雙顯示器設定上的解決方案:
<code class="javascript">const popupCenter = ({url, title, w, h}) => { // Handle dual-screen position const dualScreenLeft = window.screenLeft !== undefined ? window.screenLeft : window.screenX; const dualScreenTop = window.screenTop !== undefined ? window.screenTop : window.screenY; // Get browser window dimensions const width = window.innerWidth || document.documentElement.clientWidth || screen.width; const height = window.innerHeight || document.documentElement.clientHeight || screen.height; // Account for system zoom to obtain accurate dimensions const systemZoom = width / window.screen.availWidth; const left = (width - w) / 2 / systemZoom + dualScreenLeft const top = (height - h) / 2 / systemZoom + dualScreenTop const newWindow = window.open(url, title, ` scrollbars=yes, width=${w / systemZoom}, height=${h / systemZoom}, top=${top}, left=${left} ` ) if (window.focus) newWindow.focus(); }</code>
使用範例:
<code class="javascript">popupCenter({url: 'http://www.example.com', title: 'Popup Window', w: 500, h: 300}); </code>
此程式碼片段打開一個彈出視窗以使用者螢幕為中心的窗口,具有指定的URL、標題、寬度和高度。
以上是如何使用 JavaScript 將彈出視窗置於使用者螢幕中央?的詳細內容。更多資訊請關注PHP中文網其他相關文章!