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,225
10년 전 조회 2,135
10년 전 조회 1,826
10년 전 조회 2,156
10년 전 조회 1,947
10년 전 조회 1,722
10년 전 조회 2,323
10년 전 조회 1,750
10년 전 조회 2,054
10년 전 조회 1,736
10년 전 조회 1,581
10년 전 조회 2,982
10년 전 조회 2,107
10년 전 조회 2,202
10년 전 조회 1,965
10년 전 조회 2,242
10년 전 조회 2,101
10년 전 조회 1,870
10년 전 조회 2,299
10년 전 조회 2,754
10년 전 조회 2,176
10년 전 조회 2,059
10년 전 조회 2,042
10년 전 조회 2,002
10년 전 조회 2,649
10년 전 조회 2,578
10년 전 조회 1,628
10년 전 조회 2,029
10년 전 조회 1,612
10년 전 조회 1,959
10년 전 조회 3,425
10년 전 조회 1,997
10년 전 조회 4,063
10년 전 조회 2,682
10년 전 조회 2,294
10년 전 조회 1,660
10년 전 조회 2,023
10년 전 조회 2,317
10년 전 조회 2,741
10년 전 조회 4,060
10년 전 조회 2,868
10년 전 조회 3,011
10년 전 조회 3,476
10년 전 조회 5,124
10년 전 조회 2,691
10년 전 조회 1,858
10년 전 조회 3,570
10년 전 조회 2,009
10년 전 조회 2,259
10년 전 조회 3,006
10년 전 조회 1,898
10년 전 조회 1,903
10년 전 조회 4,204
10년 전 조회 1,921
10년 전 조회 1,818
10년 전 조회 1,824
10년 전 조회 1,720
10년 전 조회 2,230
10년 전 조회 1,953
10년 전 조회 1,829
10년 전 조회 1,972
10년 전 조회 2,485
10년 전 조회 3,317
10년 전 조회 2,364
10년 전 조회 2,612
10년 전 조회 3,153
10년 전 조회 2,535
10년 전 조회 2,349
10년 전 조회 2,264
10년 전 조회 5,145
10년 전 조회 1,951
10년 전 조회 2,273
10년 전 조회 2,821
10년 전 조회 2,272
10년 전 조회 3,953
10년 전 조회 2,199
10년 전 조회 2,160
10년 전 조회 2,237
10년 전 조회 5,799
10년 전 조회 2,105
10년 전 조회 3,660
10년 전 조회 2,954
10년 전 조회 3,579
10년 전 조회 3,204
10년 전 조회 3,907
10년 전 조회 2,073
10년 전 조회 2,375
10년 전 조회 4,156
10년 전 조회 2,530
10년 전 조회 1,928
10년 전 조회 2,910
10년 전 조회 2,653
10년 전 조회 2,386
10년 전 조회 2,368
10년 전 조회 2,595
10년 전 조회 2,228
10년 전 조회 1,823
10년 전 조회 2,574
10년 전 조회 3,023
10년 전 조회 2,577