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,159
10년 전 조회 2,067
10년 전 조회 1,757
10년 전 조회 2,099
10년 전 조회 1,885
10년 전 조회 1,652
10년 전 조회 2,263
10년 전 조회 1,697
10년 전 조회 1,995
10년 전 조회 1,660
10년 전 조회 1,512
10년 전 조회 2,922
10년 전 조회 2,047
10년 전 조회 2,144
10년 전 조회 1,894
10년 전 조회 2,181
10년 전 조회 2,029
10년 전 조회 1,794
10년 전 조회 2,248
10년 전 조회 2,691
10년 전 조회 2,112
10년 전 조회 1,986
10년 전 조회 1,960
10년 전 조회 1,932
10년 전 조회 2,582
10년 전 조회 2,518
10년 전 조회 1,555
10년 전 조회 1,971
10년 전 조회 1,545
10년 전 조회 1,900
10년 전 조회 3,363
10년 전 조회 1,927
10년 전 조회 3,993
10년 전 조회 2,614
10년 전 조회 2,235
10년 전 조회 1,591
10년 전 조회 1,971
10년 전 조회 2,265
10년 전 조회 2,683
10년 전 조회 4,009
10년 전 조회 2,799
10년 전 조회 2,963
10년 전 조회 3,409
10년 전 조회 5,055
10년 전 조회 2,628
10년 전 조회 1,803
10년 전 조회 3,518
10년 전 조회 1,954
10년 전 조회 2,200
10년 전 조회 2,942
10년 전 조회 1,845
10년 전 조회 1,841
10년 전 조회 4,149
10년 전 조회 1,874
10년 전 조회 1,770
10년 전 조회 1,762
10년 전 조회 1,654
10년 전 조회 2,179
10년 전 조회 1,900
10년 전 조회 1,777
10년 전 조회 1,917
10년 전 조회 2,430
10년 전 조회 3,269
10년 전 조회 2,303
10년 전 조회 2,555
10년 전 조회 3,101
10년 전 조회 2,472
10년 전 조회 2,306
10년 전 조회 2,208
10년 전 조회 5,099
10년 전 조회 1,899
10년 전 조회 2,216
10년 전 조회 2,761
10년 전 조회 2,203
10년 전 조회 3,895
10년 전 조회 2,153
10년 전 조회 2,107
10년 전 조회 2,184
10년 전 조회 5,737
10년 전 조회 2,045
10년 전 조회 3,594
10년 전 조회 2,899
10년 전 조회 3,528
10년 전 조회 3,131
10년 전 조회 3,845
10년 전 조회 2,009
10년 전 조회 2,310
10년 전 조회 4,092
10년 전 조회 2,476
10년 전 조회 1,867
10년 전 조회 2,855
10년 전 조회 2,596
10년 전 조회 2,325
10년 전 조회 2,286
10년 전 조회 2,522
10년 전 조회 2,165
10년 전 조회 1,773
10년 전 조회 2,527
10년 전 조회 2,962
10년 전 조회 2,513