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년 전 조회 1,781
10년 전 조회 1,710
10년 전 조회 1,385
10년 전 조회 1,723
10년 전 조회 1,527
10년 전 조회 1,268
10년 전 조회 1,875
10년 전 조회 1,316
10년 전 조회 1,623
10년 전 조회 1,271
10년 전 조회 1,135
10년 전 조회 2,539
10년 전 조회 1,632
10년 전 조회 1,699
10년 전 조회 1,470
10년 전 조회 1,737
10년 전 조회 1,587
10년 전 조회 1,372
10년 전 조회 1,797
10년 전 조회 2,246
10년 전 조회 1,634
10년 전 조회 1,522
10년 전 조회 1,549
10년 전 조회 1,502
10년 전 조회 2,162
10년 전 조회 2,064
10년 전 조회 1,139
10년 전 조회 1,550
10년 전 조회 1,099
10년 전 조회 1,460
10년 전 조회 2,953
10년 전 조회 1,489
10년 전 조회 3,538
10년 전 조회 2,165
10년 전 조회 1,782
10년 전 조회 1,154
10년 전 조회 1,508
10년 전 조회 1,803
10년 전 조회 2,234
10년 전 조회 3,541
10년 전 조회 2,365
10년 전 조회 2,492
10년 전 조회 2,963
10년 전 조회 4,611
10년 전 조회 2,185
10년 전 조회 1,359
10년 전 조회 3,118
10년 전 조회 1,483
10년 전 조회 1,714
10년 전 조회 2,501
10년 전 조회 1,370
10년 전 조회 1,405
10년 전 조회 3,701
10년 전 조회 1,406
10년 전 조회 1,280
10년 전 조회 1,252
10년 전 조회 1,171
10년 전 조회 1,697
10년 전 조회 1,433
10년 전 조회 1,320
10년 전 조회 1,429
10년 전 조회 1,918
10년 전 조회 2,893
10년 전 조회 1,842
10년 전 조회 2,076
10년 전 조회 2,642
10년 전 조회 2,021
10년 전 조회 1,819
10년 전 조회 1,762
10년 전 조회 4,637
10년 전 조회 1,410
10년 전 조회 1,751
10년 전 조회 2,290
10년 전 조회 1,746
10년 전 조회 3,482
10년 전 조회 1,711
10년 전 조회 1,603
10년 전 조회 1,709
10년 전 조회 5,277
10년 전 조회 1,573
10년 전 조회 3,150
10년 전 조회 2,415
10년 전 조회 3,092
10년 전 조회 2,667
10년 전 조회 3,404
10년 전 조회 1,552
10년 전 조회 1,828
10년 전 조회 3,646
10년 전 조회 1,984
10년 전 조회 1,381
10년 전 조회 2,373
10년 전 조회 2,132
10년 전 조회 1,856
10년 전 조회 1,814
10년 전 조회 2,023
10년 전 조회 1,675
10년 전 조회 1,313
10년 전 조회 2,090
10년 전 조회 2,555
10년 전 조회 2,096