front/JS

[JS] ๋‹จ์ผ ๋ชจ๋‹ˆํ„ฐ, ๋“€์–ผ ๋ชจ๋‹ˆํ„ฐ ํŒ์—…์ฐฝ ์ค‘์•™ ์ •๋ ฌ

๋ฐฐ๊ณ ํŒŒ์š” 2023. 10. 25. 13:47
728x90

๐Ÿ“ ํŒ์—…์ฐฝ ์ค‘์•™ ์ •๋ ฌ 

  • ๋‹จ์ผ ๋ชจ๋‹ˆํ„ฐ
var _width = '1300';
var _height = '850';
var _left = Math.ceil(( window.screen.width - _width )/2);
var _top = Math.ceil(( window.screen.height - _height )/2); 

var popupOption = 'width='+ _width +', height='+ _height +', left=' + _left + ', top='+ _top;
window.open(์ด๋™ํ•  url, "detail_win", popupOption);
  • ๋“€์–ผ ๋ชจ๋‹ˆํ„ฐ
var _width = '1300';
var _height = '850';
var popupX = Math.round(window.screenX + (window.outerWidth/2) - (_width/2));
var popupY = Math.round(window.screenY + (window.outerHeight/2) - (_height/2));

var popupOption = 'width='+ _width +', height='+ _height +', left=' + popupX + ', top='+ popupY;
window.open(์ด๋™ํ•  url, "detail_win", popupOption);

 

๋”๋ณด๊ธฐ

 


์ถœ์ฒ˜ : 

https://dev-handbook.tistory.com/50

 

 


๊ฐœ๋ฐœ ๊ณต๋ถ€๋ฅผ ์œ„ํ•œ ๋ธ”๋กœ๊ทธ ์ž…๋‹ˆ๋‹ค. 

์˜ค๋ฅ˜๊ฐ€ ์žˆ๋‹ค๋ฉด ๋Œ“๊ธ€๋กœ ์•Œ๋ ค์ฃผ์„ธ์š”! 

๊ฐ์‚ฌํ•ฉ๋‹ˆ๋‹ค.

728x90