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,043
10년 전 조회 1,733
10년 전 조회 2,075
10년 전 조회 1,866
10년 전 조회 1,622
10년 전 조회 2,241
10년 전 조회 1,668
10년 전 조회 1,969
10년 전 조회 1,629
10년 전 조회 1,487
10년 전 조회 2,902
10년 전 조회 2,018
10년 전 조회 2,122
10년 전 조회 1,851
10년 전 조회 2,163
10년 전 조회 2,005
10년 전 조회 1,769
10년 전 조회 2,209
10년 전 조회 2,670
10년 전 조회 2,094
10년 전 조회 1,951
10년 전 조회 1,926
10년 전 조회 1,906
10년 전 조회 2,552
10년 전 조회 2,486
10년 전 조회 1,535
10년 전 조회 1,950
10년 전 조회 1,525
10년 전 조회 1,865
10년 전 조회 3,342
10년 전 조회 1,892
10년 전 조회 3,963
10년 전 조회 2,581
10년 전 조회 2,199
10년 전 조회 1,557
10년 전 조회 1,935
10년 전 조회 2,238
10년 전 조회 2,655
10년 전 조회 3,981
10년 전 조회 2,774
10년 전 조회 2,930
10년 전 조회 3,382
10년 전 조회 5,028
10년 전 조회 2,612
10년 전 조회 1,780
10년 전 조회 3,492
10년 전 조회 1,918
10년 전 조회 2,154
10년 전 조회 2,918
10년 전 조회 1,811
10년 전 조회 1,818
10년 전 조회 4,127
10년 전 조회 1,840
10년 전 조회 1,738
10년 전 조회 1,727
10년 전 조회 1,622
10년 전 조회 2,155
10년 전 조회 1,872
10년 전 조회 1,752
10년 전 조회 1,889
10년 전 조회 2,406
10년 전 조회 3,248
10년 전 조회 2,279
10년 전 조회 2,529
10년 전 조회 3,076
10년 전 조회 2,443
10년 전 조회 2,277
10년 전 조회 2,177
10년 전 조회 5,073
10년 전 조회 1,871
10년 전 조회 2,188
10년 전 조회 2,739
10년 전 조회 2,181
10년 전 조회 3,877
10년 전 조회 2,128
10년 전 조회 2,084
10년 전 조회 2,163
10년 전 조회 5,714
10년 전 조회 2,021
10년 전 조회 3,580
10년 전 조회 2,876
10년 전 조회 3,505
10년 전 조회 3,105
10년 전 조회 3,828
10년 전 조회 1,978
10년 전 조회 2,282
10년 전 조회 4,068
10년 전 조회 2,452
10년 전 조회 1,843
10년 전 조회 2,827
10년 전 조회 2,568
10년 전 조회 2,291
10년 전 조회 2,252
10년 전 조회 2,489
10년 전 조회 2,140
10년 전 조회 1,749
10년 전 조회 2,508
10년 전 조회 2,949
10년 전 조회 2,490