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,204
10년 전 조회 2,114
10년 전 조회 1,806
10년 전 조회 2,142
10년 전 조회 1,926
10년 전 조회 1,701
10년 전 조회 2,303
10년 전 조회 1,738
10년 전 조회 2,035
10년 전 조회 1,709
10년 전 조회 1,555
10년 전 조회 2,973
10년 전 조회 2,089
10년 전 조회 2,187
10년 전 조회 1,941
10년 전 조회 2,227
10년 전 조회 2,082
10년 전 조회 1,844
10년 전 조회 2,284
10년 전 조회 2,732
10년 전 조회 2,157
10년 전 조회 2,038
10년 전 조회 2,017
10년 전 조회 1,985
10년 전 조회 2,629
10년 전 조회 2,561
10년 전 조회 1,612
10년 전 조회 2,017
10년 전 조회 1,587
10년 전 조회 1,943
10년 전 조회 3,408
10년 전 조회 1,979
10년 전 조회 4,034
10년 전 조회 2,663
10년 전 조회 2,278
10년 전 조회 1,642
10년 전 조회 2,011
10년 전 조회 2,299
10년 전 조회 2,727
10년 전 조회 4,045
10년 전 조회 2,847
10년 전 조회 3,000
10년 전 조회 3,454
10년 전 조회 5,097
10년 전 조회 2,672
10년 전 조회 1,845
10년 전 조회 3,557
10년 전 조회 1,991
10년 전 조회 2,244
10년 전 조회 2,982
10년 전 조회 1,887
10년 전 조회 1,883
10년 전 조회 4,188
10년 전 조회 1,908
10년 전 조회 1,803
10년 전 조회 1,807
10년 전 조회 1,700
10년 전 조회 2,215
10년 전 조회 1,942
10년 전 조회 1,819
10년 전 조회 1,960
10년 전 조회 2,466
10년 전 조회 3,302
10년 전 조회 2,344
10년 전 조회 2,595
10년 전 조회 3,135
10년 전 조회 2,517
10년 전 조회 2,339
10년 전 조회 2,248
10년 전 조회 5,138
10년 전 조회 1,932
10년 전 조회 2,254
10년 전 조회 2,804
10년 전 조회 2,254
10년 전 조회 3,934
10년 전 조회 2,189
10년 전 조회 2,137
10년 전 조회 2,220
10년 전 조회 5,778
10년 전 조회 2,086
10년 전 조회 3,645
10년 전 조회 2,940
10년 전 조회 3,562
10년 전 조회 3,185
10년 전 조회 3,884
10년 전 조회 2,050
10년 전 조회 2,361
10년 전 조회 4,142
10년 전 조회 2,512
10년 전 조회 1,905
10년 전 조회 2,892
10년 전 조회 2,634
10년 전 조회 2,370
10년 전 조회 2,342
10년 전 조회 2,568
10년 전 조회 2,213
10년 전 조회 1,809
10년 전 조회 2,559
10년 전 조회 3,000
10년 전 조회 2,548