일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- PHP
- chart.js
- 자바스크립트
- dovecot
- 폼메일
- 안드로이드 푸쉬
- UML
- javascript
- roundcube
- Mail Server
- FCM
- android 효과음
- C# IO
- 자동 생성
- curl
- 우분투
- php 취약점
- 안드로이드 gcm
- php 시큐어코딩
- 설치
- Android
- C#
- 안드로이드
- 안드로이드 푸시
- mysql
- html5
- WebView
- soundpool
- xe
- not working
- Today
- Total
그러냐
Full-screen window open 본문
http://blog.naver.com/rotaercz/140033499338
에서 발견한 코드를 기반으로 이것저것 더 테스트
function full_screen_open(){
//http://blog.naver.com/rotaercz/140033499338
var isNav = (navigator.appName == "Netscape")?1:0;
var isIE = (navigator.appName.indexOf("Microsoft") != -1)?1:0;
var isMac=(navigator.platform.indexOf("Mac")>-1)?1:0;
var isWin=(navigator.platform.indexOf("Win")>-1)?1:0;
var opts = "toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,menubar=no,fullscreen=yes";
if (isNav) {
//크롬 사파리 파폭도 여기 잡힌다. 파폭은 잘된다 아이폰도 여기 잡힌다. 아이폰은 잘된다.
opts = opts+",width="+screen.availWidth+",height="+screen.availHeight+",outerWidth="+screen.availWidth+",outerHeight="+screen.availHeight+",screenX=0,screenY=0";
} else if (isIE) {
opts = opts+",left=0,top=0";
if (isMac) {
opts = opts+",width="+(screen.availWidth - 13)+",height="+(screen.availHeight - 32);
} else if (isWin) {
opts = opts+",width="+(screen.availWidth - 12)+",height="+(screen.availHeight - 25);
} else {
opts = opts+",width="+screen.availWidth+",height="+screen.availHeight;
}
} else {
//내가 오페라 때문에 햄보칼수없어
opts = "fullscreen=yes";
//opts = opts+",left=0,top=0,width="+(screen.availWidth - 13)+",height="+(screen.availHeight - 32)+"outerWidth="+screen.availWidth+",outerHeight="+screen.availHeight;
}
var url = 'http://localhost';
var newWin = window.open(url,'',opts);
newWin.focus();
if (parseInt(navigator.appVersion) >= 4) {
newWin.moveTo(0,0);
}
}
full_screen_open();
윈도 7 에서 IE8, FF3.5 Crome4.1 Safari4.0 까지는
무사히 Full screen으로 뜨는데
Opera 10에서만 tab으로 뜬다 -_-;;
IE 6, 7 , MAC 테스트도 안해봤음.
출처 : http://doodoori2.tistory.com/116
[출처] Full-screen window open|작성자 관절분리
'javascript' 카테고리의 다른 글
tinymce 에디터 설치.. (1) | 2016.01.27 |
---|---|
자바스크립트 현재시간 구하기 (0) | 2016.01.27 |
자바스크립트 기능반복하기 (타이머) (0) | 2016.01.27 |
이미지 사이즈(width, height) 가져와서 새창 띄우기 (0) | 2016.01.27 |
다른 도메인 iframe 높이 조절하기 (0) | 2016.01.27 |