R

풀스크린 스크립트

<script>
function AutoScreen(el){
 
 var doc  = document.fullscreenElement;
 var moz  = document.mozFullScreenElement;
 var webkit = document.webkitFullscreenElement;
 var ms  = document.msFullscreenElement;
 
 if (!doc && !moz && !webkit && !ms) {
  fullscreen(el);
 } else {
  exitscreen();
 }
 
}

function fullscreen(el){
 
 if (el.requestFullscreen) {
  el.requestFullscreen();
 } else if (el.msRequestFullscreen) {
  el.msRequestFullscreen();
 } else if (el.mozRequestFullScreen) {
  el.mozRequestFullScreen();
    } else if (el.webkitRequestFullscreen) {
  el.webkitRequestFullscreen(Element.ALLOW_KEYBOARD_INPUT);
    }
 
}
function exitscreen(){
 
 var doc = document;
 
 if (doc.exitFullscreen) {
  doc.exitFullscreen();
    } else if (doc.msExitFullscreen) {
  doc.msExitFullscreen();
    } else if (doc.mozCancelFullScreen) {
  doc.mozCancelFullScreen();
    } else if (doc.webkitExitFullscreen) {
  doc.webkitExitFullscreen();
    }
}
</script>

<a href="#"onclick="AutoScreen(document.body)">FullScreen</a>​

 

풀스크린 검색시 나와있는 스크립트 정리 해봤습니다.

 

|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
10년 전 조회 2,334
10년 전 조회 2,249
10년 전 조회 1,922
10년 전 조회 2,260
10년 전 조회 2,060
10년 전 조회 1,836
10년 전 조회 2,429
10년 전 조회 1,859
10년 전 조회 2,144
10년 전 조회 1,847
10년 전 조회 1,672
10년 전 조회 3,089
10년 전 조회 2,210
10년 전 조회 2,288
10년 전 조회 2,071
10년 전 조회 2,321
10년 전 조회 2,220
10년 전 조회 1,959
10년 전 조회 2,382
10년 전 조회 2,860
10년 전 조회 2,279
10년 전 조회 2,161
10년 전 조회 2,170
10년 전 조회 2,107
10년 전 조회 2,758
10년 전 조회 2,678
10년 전 조회 1,727
10년 전 조회 2,142
10년 전 조회 1,724
10년 전 조회 2,071
10년 전 조회 3,517
10년 전 조회 2,110
10년 전 조회 4,197
10년 전 조회 2,785
10년 전 조회 2,414
10년 전 조회 1,761
10년 전 조회 2,134
10년 전 조회 2,418
10년 전 조회 2,837
10년 전 조회 4,166
10년 전 조회 2,959
10년 전 조회 3,115
10년 전 조회 3,587
10년 전 조회 5,232
10년 전 조회 2,792
10년 전 조회 1,970
10년 전 조회 3,678
10년 전 조회 2,119
10년 전 조회 2,370
10년 전 조회 3,116
10년 전 조회 2,007
10년 전 조회 2,015
10년 전 조회 4,302
10년 전 조회 2,033
10년 전 조회 1,916
10년 전 조회 1,936
10년 전 조회 1,833
10년 전 조회 2,351
10년 전 조회 2,054
10년 전 조회 1,944
10년 전 조회 2,085
10년 전 조회 2,604
10년 전 조회 3,429
10년 전 조회 2,491
10년 전 조회 2,754
10년 전 조회 3,273
10년 전 조회 2,652
10년 전 조회 2,450
10년 전 조회 2,383
10년 전 조회 5,270
10년 전 조회 2,055
10년 전 조회 2,383
10년 전 조회 2,917
10년 전 조회 2,385
10년 전 조회 4,062
10년 전 조회 2,298
10년 전 조회 2,251
10년 전 조회 2,349
10년 전 조회 5,908
10년 전 조회 2,217
10년 전 조회 3,781
10년 전 조회 3,069
10년 전 조회 3,704
10년 전 조회 3,335
10년 전 조회 4,015
10년 전 조회 2,179
10년 전 조회 2,464
10년 전 조회 4,281
10년 전 조회 2,643
10년 전 조회 2,031
10년 전 조회 3,011
10년 전 조회 2,758
10년 전 조회 2,494
10년 전 조회 2,464
10년 전 조회 2,671
10년 전 조회 2,330
10년 전 조회 1,921
10년 전 조회 2,675
10년 전 조회 3,122
10년 전 조회 2,685