>  기사  >  웹 프론트엔드  >  브라우저에서 팝업 창을 중앙에 맞추는 방법은 무엇입니까?

브라우저에서 팝업 창을 중앙에 맞추는 방법은 무엇입니까?

Linda Hamilton
Linda Hamilton원래의
2024-10-31 06:20:02399검색

How to Center a Popup Window in the Browser?

팝업창을 화면 중앙에 정확하게 위치시키는 방법

JavaScript의 window.open 기능을 사용하여 생성한 팝업창을 화면 중앙에 위치시키는 방법 최적의 사용자 경험을 위해서는 화면이 필수적입니다. 정확한 좌표는 화면 해상도에 따라 달라지므로 동적 솔루션이 필요합니다.

해결책: 싱글/듀얼 모니터 기능 활용

싱글 모니터와 듀얼 모니터 기능을 모두 수용하는 강력한 솔루션 듀얼 모니터 설정은 아래와 같습니다:

<code class="javascript">const popupCenter = ({ url, title, w, h }) => {
    // Determine the positions based on screen resolution
    const dualScreenLeft = window.screenLeft || window.screenX;
    const dualScreenTop = window.screenTop || window.screenY;

    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 the centered coordinates
    const left = (width - w) / 2 / systemZoom + dualScreenLeft;
    const top = (height - h) / 2 / systemZoom + dualScreenTop;

    // Open the popup window with the calculated dimensions and positioning
    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.xtf.dk', title: 'xtf', w: 900, h: 500 }); </code>

크레딧 및 출처:

원본 http://www.xtf.dk/2011/08/center-new-popup-window-even-on.html의 이 솔루션은 다양한 화면 구성에 대한 팝업 창 중심 배치를 효과적으로 처리합니다.

위 내용은 브라우저에서 팝업 창을 중앙에 맞추는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.