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,133
10년 전 조회 2,045
10년 전 조회 1,733
10년 전 조회 2,075
10년 전 조회 1,867
10년 전 조회 1,626
10년 전 조회 2,241
10년 전 조회 1,671
10년 전 조회 1,973
10년 전 조회 1,630
10년 전 조회 1,489
10년 전 조회 2,902
10년 전 조회 2,019
10년 전 조회 2,122
10년 전 조회 1,855
10년 전 조회 2,164
10년 전 조회 2,007
10년 전 조회 1,770
10년 전 조회 2,213
10년 전 조회 2,670
10년 전 조회 2,094
10년 전 조회 1,954
10년 전 조회 1,926
10년 전 조회 1,906
10년 전 조회 2,552
10년 전 조회 2,486
10년 전 조회 1,535
10년 전 조회 1,950
10년 전 조회 1,528
10년 전 조회 1,868
10년 전 조회 3,343
10년 전 조회 1,898
10년 전 조회 3,963
10년 전 조회 2,581
10년 전 조회 2,202
10년 전 조회 1,558
10년 전 조회 1,935
10년 전 조회 2,239
10년 전 조회 2,655
10년 전 조회 3,982
10년 전 조회 2,776
10년 전 조회 2,933
10년 전 조회 3,385
10년 전 조회 5,031
10년 전 조회 2,612
10년 전 조회 1,780
10년 전 조회 3,492
10년 전 조회 1,921
10년 전 조회 2,159
10년 전 조회 2,922
10년 전 조회 1,812
10년 전 조회 1,821
10년 전 조회 4,127
10년 전 조회 1,840
10년 전 조회 1,739
10년 전 조회 1,728
10년 전 조회 1,624
10년 전 조회 2,156
10년 전 조회 1,873
10년 전 조회 1,757
10년 전 조회 1,890
10년 전 조회 2,406
10년 전 조회 3,248
10년 전 조회 2,283
10년 전 조회 2,535
10년 전 조회 3,078
10년 전 조회 2,446
10년 전 조회 2,277
10년 전 조회 2,180
10년 전 조회 5,073
10년 전 조회 1,876
10년 전 조회 2,190
10년 전 조회 2,739
10년 전 조회 2,181
10년 전 조회 3,878
10년 전 조회 2,132
10년 전 조회 2,085
10년 전 조회 2,164
10년 전 조회 5,717
10년 전 조회 2,023
10년 전 조회 3,580
10년 전 조회 2,876
10년 전 조회 3,506
10년 전 조회 3,106
10년 전 조회 3,830
10년 전 조회 1,980
10년 전 조회 2,284
10년 전 조회 4,070
10년 전 조회 2,453
10년 전 조회 1,844
10년 전 조회 2,828
10년 전 조회 2,571
10년 전 조회 2,295
10년 전 조회 2,252
10년 전 조회 2,490
10년 전 조회 2,141
10년 전 조회 1,752
10년 전 조회 2,510
10년 전 조회 2,952
10년 전 조회 2,492