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,235
10년 전 조회 2,140
10년 전 조회 1,839
10년 전 조회 2,164
10년 전 조회 1,961
10년 전 조회 1,733
10년 전 조회 2,330
10년 전 조회 1,761
10년 전 조회 2,062
10년 전 조회 1,750
10년 전 조회 1,586
10년 전 조회 2,992
10년 전 조회 2,119
10년 전 조회 2,207
10년 전 조회 1,979
10년 전 조회 2,252
10년 전 조회 2,113
10년 전 조회 1,875
10년 전 조회 2,307
10년 전 조회 2,760
10년 전 조회 2,182
10년 전 조회 2,071
10년 전 조회 2,057
10년 전 조회 2,011
10년 전 조회 2,661
10년 전 조회 2,587
10년 전 조회 1,637
10년 전 조회 2,040
10년 전 조회 1,626
10년 전 조회 1,970
10년 전 조회 3,435
10년 전 조회 2,006
10년 전 조회 4,079
10년 전 조회 2,687
10년 전 조회 2,313
10년 전 조회 1,672
10년 전 조회 2,035
10년 전 조회 2,327
10년 전 조회 2,753
10년 전 조회 4,068
10년 전 조회 2,878
10년 전 조회 3,020
10년 전 조회 3,488
10년 전 조회 5,134
10년 전 조회 2,701
10년 전 조회 1,874
10년 전 조회 3,581
10년 전 조회 2,027
10년 전 조회 2,270
10년 전 조회 3,012
10년 전 조회 1,903
10년 전 조회 1,916
10년 전 조회 4,216
10년 전 조회 1,931
10년 전 조회 1,825
10년 전 조회 1,833
10년 전 조회 1,729
10년 전 조회 2,241
10년 전 조회 1,960
10년 전 조회 1,839
10년 전 조회 1,975
10년 전 조회 2,498
10년 전 조회 3,329
10년 전 조회 2,380
10년 전 조회 2,629
10년 전 조회 3,161
10년 전 조회 2,546
10년 전 조회 2,355
10년 전 조회 2,277
10년 전 조회 5,155
10년 전 조회 1,959
10년 전 조회 2,283
10년 전 조회 2,828
10년 전 조회 2,282
10년 전 조회 3,961
10년 전 조회 2,207
10년 전 조회 2,171
10년 전 조회 2,247
10년 전 조회 5,813
10년 전 조회 2,118
10년 전 조회 3,675
10년 전 조회 2,967
10년 전 조회 3,592
10년 전 조회 3,214
10년 전 조회 3,912
10년 전 조회 2,087
10년 전 조회 2,384
10년 전 조회 4,170
10년 전 조회 2,537
10년 전 조회 1,938
10년 전 조회 2,919
10년 전 조회 2,660
10년 전 조회 2,401
10년 전 조회 2,377
10년 전 조회 2,602
10년 전 조회 2,236
10년 전 조회 1,832
10년 전 조회 2,584
10년 전 조회 3,030
10년 전 조회 2,583