팝업 창을 화면 중앙에 배치 하시겠습니까?


280

window.open화면 변수의 중심에 자바 스크립트 기능을 통해 열린 팝업 창 을 현재 선택된 화면 해상도로 어떻게 가운데에 배치 할 수 있습니까?

답변:


458

싱글 / 듀얼 모니터 기능 ( http://www.xtf.dk에 신용 -감사합니다!)

업데이트 : @Frost 덕분에 화면의 너비와 높이에 도달하지 않은 창에서도 작동합니다!

듀얼 모니터를 사용하는 경우 창은 가로로 가운데에 위치하지만 세로로 표시되지는 않습니다 ...이 기능을 사용하여 설명하십시오.

const popupCenter = ({url, title, w, h}) => {
    // Fixes dual-screen position                             Most browsers      Firefox
    const dualScreenLeft = window.screenLeft !==  undefined ? window.screenLeft : window.screenX;
    const dualScreenTop = window.screenTop !==  undefined   ? window.screenTop  : window.screenY;

    const width = window.innerWidth ? window.innerWidth : document.documentElement.clientWidth ? document.documentElement.clientWidth : screen.width;
    const height = window.innerHeight ? window.innerHeight : document.documentElement.clientHeight ? document.documentElement.clientHeight : screen.height;

    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();
}

사용 예 :

popupCenter({url: 'http://www.xtf.dk', title: 'xtf', w: 900, h: 500});  

크레딧은 다음으로 이동합니다 : http://www.xtf.dk/2011/08/center-new-popup-window-even-on.html (이 웹 사이트는 코드는 여기에 있습니다, 건배!)


7
놀다가 생각한대로 작동하지 않습니다. 더 단순하고 예외적 인 답변이 훨씬 좋습니다. 시작 페이지가 최대화 된 경우에만 작동합니다.
Bart

8
크레딧에 감사드립니다. 최소화 된 창에 대한 예제 작업을 지금 만들었습니다. xtf.dk/2011/08/center-new-popup-window-even-on.html
Frost

10
전역 변수 (너비 / 높이)를 사용합니다.
Ruben Stolk

13
2010 년에 게시 된 원래 질문, 2010 년에 게시 된 원래 솔루션. 2013 년에 게시 된 듀얼 모니터에서 작동하지 않는 원래 솔루션에 대한 의견, 2013 년에 게시 된 듀얼 모니터에 대한 내 답변. 2015 년 트리플 모니터에 대한 의견. 이제 답변을해야합니다. 이 속도로 2020 년에 5 대의 모니터, 2025 년에 6 대의 모니터, 2030 년에 7 대의 모니터에 대한 답변을 얻을 수 있습니다.
Tony M

2
@TonyM 나는 대답을 업데이트했다. 예, 사이클이 계속 진행되어야합니다!
Zo

329

다음과 같이 시도하십시오.

function popupwindow(url, title, w, h) {
  var left = (screen.width/2)-(w/2);
  var top = (screen.height/2)-(h/2);
  return window.open(url, title, 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+top+', left='+left);
} 

17
이 기능은 듀얼 모니터 설정에서 작동하지 않습니다. 아래에 단일 및 이중 모니터 솔루션을 게시했습니다.
Tony M

1
이것을 확인하고 싶습니다 : var left = (screen.width / 2)-(w / 2); var top = (screen.height / 2)-(h / 2); 그렇지 않으면 left = 0과 top = 0을 반환하지 않습니까 ??? w가 screen.width와 같고 h가 screen.height와 같다고 가정하면 여기에서 옳고 그른 것입니까?
mutanic

1
@mutanic w / h는 화면이 아니라 팝업 크기를 나타냅니다.
Mahn

2
두 번째 모니터 (주 모니터에서 UP)의 중앙에 있지 않습니다. 듀얼 스크린에 대한 답변도 실패합니다.
vsync

2
화면 가운데가 아닌 브라우저 가운데에 창을 중앙에 배치하려는 경우 작동하지 않습니다 (예를 들어, 사용자가 브라우저 크기를 절반으로 조정 한 경우). 브라우저를 중앙에 놓으려면 screen.width & screen.height를 window.innerWidth & window.innerHeight로 바꿉니다.
Jonathon Blok

71

다중 모니터 설정에서 현재 화면의 중심을 결정하기가 복잡하기 때문에 더 쉬운 옵션은 부모 창 위에 팝업을 집중시키는 것입니다. 부모 창을 다른 매개 변수로 전달하면됩니다.

function popupWindow(url, title, win, w, h) {
    const y = win.top.outerHeight / 2 + win.top.screenY - ( h / 2);
    const x = win.top.outerWidth / 2 + win.top.screenX - ( w / 2);
    return win.open(url, title, `toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=${w}, height=${h}, top=${y}, left=${x}`);
}

이행:

popupWindow('google.com', 'test', window, 200, 100);

이것은 공유 버튼의 팝업에 Facebook에서 사용하는 기술인 것 같습니다.
Tim Tisdall

3
이것은 듀얼 스크린에서 완벽하게 작동했습니다. 창을 이동하거나 크기를 조정할 때도 열린 창의 중앙에 표시됩니다. 이것은 정답입니다. 감사.
Oli B

2
@OliB에 동의합니다. 이것은 완벽하게 작동하며 최근 개발 문제를 해결했습니다! 2019
MrLewk

여기 에서이 기능의 기능을 확장하도록 수정했습니다 . 너비와 높이를 백분율 또는 비율로 설정하는 옵션이 포함되어 있습니다. 문자열보다 관리하기 쉬운 객체로 옵션을 변경할 수도 있습니다.
SwiftNinjaPro


15

현재있는 프레임의 중앙에 놓으려면이 기능을 권장합니다.

function popupwindow(url, title, w, h) {
    var y = window.outerHeight / 2 + window.screenY - ( h / 2)
    var x = window.outerWidth / 2 + window.screenX - ( w / 2)
    return window.open(url, title, 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=' + w + ', height=' + h + ', top=' + y + ', left=' + x);
} 

Crazy Tim의 답변과 비슷하지만 window.top을 사용하지 않습니다. 이렇게하면 창이 다른 도메인의 iframe에 포함되어 있어도 작동합니다.


13

Firefox에서 잘 작동합니다.
상단 변수를 다른 이름으로 변경하고 다시 시도하십시오.

        var w = 200;
        var h = 200;
        var left = Number((screen.width/2)-(w/2));
        var tops = Number((screen.height/2)-(h/2));

window.open("templates/sales/index.php?go=new_sale", '', 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+tops+', left='+left);

6
할 필요는 없습니다 Number(...).
gustavohenke

6

나의 추천은 나머지 공간에서 최고 위치를 33 % 또는 25 %를 사용하는 것입니다,
다른 예로하지 50 %, 여기에 게시
주로 때문에의 창 헤더 ,
사용자에게보다 효율적이고 편안하게보고있는

완전한 코드 :

    <script language="javascript" type="text/javascript">
        function OpenPopupCenter(pageURL, title, w, h) {
            var left = (screen.width - w) / 2;
            var top = (screen.height - h) / 4;  // for 25% - devide by 4  |  for 33% - devide by 3
            var targetWin = window.open(pageURL, title, 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=' + w + ', height=' + h + ', top=' + top + ', left=' + left);
        } 
    </script>
</head>
<body>
    <button onclick="OpenPopupCenter('http://www.google.com', 'TEST!?', 800, 600);">click on me</button>
</body>
</html>



이 줄을 확인하십시오 :
var top = (screen.height-h) / 4; // 25 %-4만큼 이탈 | 33 %-3만큼 편차


6

Facebook은 다음 알고리즘을 사용하여 로그인 팝업 창을 배치합니다.

function PopupCenter(url, title, w, h) {
  var userAgent = navigator.userAgent,
      mobile = function() {
        return /\b(iPhone|iP[ao]d)/.test(userAgent) ||
          /\b(iP[ao]d)/.test(userAgent) ||
          /Android/i.test(userAgent) ||
          /Mobile/i.test(userAgent);
      },
      screenX = typeof window.screenX != 'undefined' ? window.screenX : window.screenLeft,
      screenY = typeof window.screenY != 'undefined' ? window.screenY : window.screenTop,
      outerWidth = typeof window.outerWidth != 'undefined' ? window.outerWidth : document.documentElement.clientWidth,
      outerHeight = typeof window.outerHeight != 'undefined' ? window.outerHeight : document.documentElement.clientHeight - 22,
      targetWidth = mobile() ? null : w,
      targetHeight = mobile() ? null : h,
      V = screenX < 0 ? window.screen.width + screenX : screenX,
      left = parseInt(V + (outerWidth - targetWidth) / 2, 10),
      right = parseInt(screenY + (outerHeight - targetHeight) / 2.5, 10),
      features = [];
  if (targetWidth !== null) {
    features.push('width=' + targetWidth);
  }
  if (targetHeight !== null) {
    features.push('height=' + targetHeight);
  }
  features.push('left=' + left);
  features.push('top=' + right);
  features.push('scrollbars=1');

  var newWindow = window.open(url, title, features.join(','));

  if (window.focus) {
    newWindow.focus();
  }

  return newWindow;
}

4

CSS를 사용하여 팝업 중앙에 배치 할 요소에 다음 속성을 지정하십시오.

element{

position:fixed;
left: 50%;
top: 50%;
-ms-transform: translate(-50%,-50%);
-moz-transform:translate(-50%,-50%);
-webkit-transform: translate(-50%,-50%);
 transform: translate(-50%,-50%);

}

3

위에서 언급 한 솔루션의 대체 버전은 다음과 같습니다.

function openPopupCenter(url, title, w, h) {
  // Fixes dual-screen position
  // Most browsers use window.screenLeft
  // Firefox uses screen.left
  var dualScreenLeft = getFirstNumber(window.screenLeft, screen.left),
    dualScreenTop = getFirstNumber(window.screenTop, screen.top),
    width = getFirstNumber(window.innerWidth, document.documentElement.clientWidth, screen.width),
    height = getFirstNumber(window.innerHeight, document.documentElement.clientHeight, screen.height),
    left = ((width / 2) - (w / 2)) + dualScreenLeft,
    top = ((height / 2) - (h / 2)) + dualScreenTop,
    newWindow = window.open(url, title, getSpecs());

  // Puts focus on the newWindow
  if (window.focus) {
    newWindow.focus();
  }

  return newWindow;

  function getSpecs() {
    return 'scrollbars=yes, width=' + w + ', height=' + h + ', top=' + top + ', left=' + left;
  }

  function getFirstNumber() {
    for(var i = 0, len = arguments.length; i < len; i++) {
      var value = arguments[i];

      if (typeof value === 'number') {
        return value;
      }
    }
  }
}

3

ES6 JavaScript를 사용한 내 버전.
듀얼 스크린 설정으로 Chrome 및 Chromium에서 잘 작동합니다.

function openCenteredWindow({url, width, height}) {
    const pos = {
        x: (screen.width / 2) - (width / 2),
        y: (screen.height/2) - (height / 2)
    };

    const features = `width=${width} height=${height} left=${pos.x} top=${pos.y}`;

    return window.open(url, '_blank', features);
}

openCenteredWindow({
    url: 'https://stackoverflow.com/', 
    width: 500, 
    height: 600
}).focus();

2

(이것은 2020 년에 게시되었습니다)

CrazyTim의 답변 확장

동적 크기에 대한 너비를 백분율 (또는 비율)로 설정할 수도 있습니다. 절대 크기는 여전히 허용됩니다.

function popupWindow(url, title, w='75%', h='16:9', opts){
    // sort options
    let options = [];
    if(typeof opts === 'object'){
        Object.keys(opts).forEach(function(value, key){
            if(value === true){value = 'yes';}else if(value === false){value = 'no';}
            options.push(`${key}=${value}`);
        });
        if(options.length){options = ','+options.join(',');}
        else{options = '';}
    }else if(Array.isArray(opts)){
        options = ','+opts.join(',');
    }else if(typeof opts === 'string'){
        options = ','+opts;
    }else{options = '';}

    // add most vars to local object (to shorten names)
    let size = {w: w, h: h};
    let win = {w: {i: window.top.innerWidth, o: window.top.outerWidth}, h: {i: window.top.innerHeight, o: window.top.outerHeight}, x: window.top.screenX || window.top.screenLeft, y: window.top.screenY || window.top.screenTop}

    // set window size if percent
    if(typeof size.w === 'string' && size.w.endsWith('%')){size.w = Number(size.w.replace(/%$/, ''))*win.w.o/100;}
    if(typeof size.h === 'string' && size.h.endsWith('%')){size.h = Number(size.h.replace(/%$/, ''))*win.h.o/100;}

    // set window size if ratio
    if(typeof size.w === 'string' && size.w.includes(':')){
        size.w = size.w.split(':', 2);
        if(win.w.o < win.h.o){
            // if height is bigger than width, reverse ratio
            size.w = Number(size.h)*Number(size.w[1])/Number(size.w[0]);
        }else{size.w = Number(size.h)*Number(size.w[0])/Number(size.w[1]);}
    }
    if(typeof size.h === 'string' && size.h.includes(':')){
        size.h = size.h.split(':', 2);
        if(win.w.o < win.h.o){
            // if height is bigger than width, reverse ratio
            size.h = Number(size.w)*Number(size.h[0])/Number(size.h[1]);
        }else{size.h = Number(size.w)*Number(size.h[1])/Number(size.h[0]);}
    }

    // force window size to type number
    if(typeof size.w === 'string'){size.w = Number(size.w);}
    if(typeof size.h === 'string'){size.h = Number(size.h);}

    // keep popup window within padding of window size
    if(size.w > win.w.i-50){size.w = win.w.i-50;}
    if(size.h > win.h.i-50){size.h = win.h.i-50;}

    // do math
    const x = win.w.o / 2 + win.x - (size.w / 2);
    const y = win.h.o / 2 + win.y - (size.h / 2);
    return window.open(url, title, `width=${size.w},height=${size.h},left=${x},top=${y}${options}`);
}

용법:

// width and height are optional (defaults: width = '75%' height = '16:9')
popupWindow('https://www.google.com', 'Title', '75%', '16:9', {/* options (optional) */});

// options can be an object, array, or string

// example: object (only in object, true/false get replaced with 'yes'/'no')
const options = {scrollbars: false, resizable: true};

// example: array
const options = ['scrollbars=no', 'resizable=yes'];

// example: string (same as window.open() string)
const options = 'scrollbars=no,resizable=yes';

1
function fnPopUpWindow(pageId) {
     popupwindow("hellowWorld.php?id="+pageId, "printViewer", "500", "300");
}

function popupwindow(url, title, w, h) {
    var left = Math.round((screen.width/2)-(w/2));
    var top = Math.round((screen.height/2)-(h/2));
    return window.open(url, title, 'toolbar=no, location=no, directories=no, status=no, '
            + 'menubar=no, scrollbars=yes, resizable=no, copyhistory=no, width=' + w 
            + ', height=' + h + ', top=' + top + ', left=' + left);
}
<a href="javascript:void(0);" onclick="fnPopUpWindow('10');">Print Me</a>

참고 : Math.round너비와 높이의 정확한 정수를 얻으 려면 사용해야 합니다.


0

Facebook을 기반으로하지만 팝업에 충분한 공간이 있으면 공간을 확보하기 위해 사용자 에이전트 정규식 대신 미디어 쿼리를 사용하여 계산합니다. 그렇지 않으면 전체 화면으로 이동합니다. 모바일의 TBH 팝업은 새 탭으로 열립니다.

function popupCenter(url, title, w, h) {
  const hasSpace = window.matchMedia(`(min-width: ${w + 20}px) and (min-height: ${h + 20}px)`).matches;
  const isDef = v => typeof v !== 'undefined';
  const screenX = isDef(window.screenX) ? window.screenX : window.screenLeft;
  const screenY = isDef(window.screenY) ? window.screenY : window.screenTop;
  const outerWidth = isDef(window.outerWidth) ? window.outerWidth : document.documentElement.clientWidth;
  const outerHeight = isDef(window.outerHeight) ? window.outerHeight : document.documentElement.clientHeight - 22;
  const targetWidth = hasSpace ? w : null;
  const targetHeight = hasSpace ? h : null;
  const V = screenX < 0 ? window.screen.width + screenX : screenX;
  const left = parseInt(V + (outerWidth - targetWidth) / 2, 10);
  const right = parseInt(screenY + (outerHeight - targetHeight) / 2.5, 10);
  const features = [];

  if (targetWidth !== null) {
    features.push(`width=${targetWidth}`);
  }

  if (targetHeight !== null) {
    features.push(`height=${targetHeight}`);
  }

  features.push(`left=${left}`);
  features.push(`top=${right}`);
  features.push('scrollbars=1');

  const newWindow = window.open(url, title, features.join(','));

  if (window.focus) {
    newWindow.focus();
  }

  return newWindow;
}

0

이 하이브리드 솔루션은 단일 및 이중 화면 설정 모두에서 저에게 효과적이었습니다.

function popupCenter (url, title, w, h) {
    // Fixes dual-screen position                              Most browsers      Firefox
    const dualScreenLeft = window.screenLeft !== undefined ? window.screenLeft : window.screenX;
    const dualScreenTop = window.screenTop !== undefined ? window.screenTop : window.screenY;
    const left = (window.screen.width/2)-(w/2) + dualScreenLeft;
    const top = (window.screen.height/2)-(h/2) + dualScreenTop;
    return window.open(url, title, 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+top+', left='+left);
}

0

외부 모니터와 window.screenXwindow.screenY 의 팝업 창을 가운데에 배치하는 데 문제가 있었으며 각각 음수 값 (-1920, -1200)이었습니다. 위의 제안 된 솔루션을 모두 시도했지만 기본 모니터에서 잘 작동했습니다. 나는 떠나고 싶었다

  • 왼쪽과 오른쪽의 경우 200px 여백
  • 상단 및 하단의 150px 여백

다음은 나를 위해 일한 것입니다.

 function createPopupWindow(url) {
    var height = screen.height;
    var width = screen.width;
    var left, top, win;

    if (width > 1050) {
        width = width - 200;
    } else {
        width = 850;
    }

    if (height > 850) {
        height = height - 150;
    } else {
        height = 700;
    }

    if (window.screenX < 0) {
        left = (window.screenX - width) / 2;
    } else {
        left = (screen.width - width) / 2;
    }

    if (window.screenY < 0) {
        top = (window.screenY + height) / 4;
    } else {
        top = (screen.height - height) / 4;
    }

    win=window.open( url,"myTarget", "width="+width+", height="+height+",left="+left+",top="+top+"menubar=no, status=no, location=no, resizable=yes, scrollbars=yes");
    if (win.focus) {
        win.focus();
    }
}

-4

.center{
    left: 50%;
    max-width: 350px;
    padding: 15px;
    text-align:center;
    position: relative;
    transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);   
}

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.