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,205
10년 전 조회 2,118
10년 전 조회 1,808
10년 전 조회 2,144
10년 전 조회 1,930
10년 전 조회 1,704
10년 전 조회 2,308
10년 전 조회 1,738
10년 전 조회 2,037
10년 전 조회 1,712
10년 전 조회 1,561
10년 전 조회 2,976
10년 전 조회 2,089
10년 전 조회 2,189
10년 전 조회 1,945
10년 전 조회 2,229
10년 전 조회 2,083
10년 전 조회 1,849
10년 전 조회 2,289
10년 전 조회 2,733
10년 전 조회 2,163
10년 전 조회 2,040
10년 전 조회 2,025
10년 전 조회 1,989
10년 전 조회 2,632
10년 전 조회 2,566
10년 전 조회 1,616
10년 전 조회 2,020
10년 전 조회 1,591
10년 전 조회 1,945
10년 전 조회 3,413
10년 전 조회 1,980
10년 전 조회 4,040
10년 전 조회 2,669
10년 전 조회 2,281
10년 전 조회 1,644
10년 전 조회 2,013
10년 전 조회 2,302
10년 전 조회 2,729
10년 전 조회 4,046
10년 전 조회 2,852
10년 전 조회 3,002
10년 전 조회 3,462
10년 전 조회 5,104
10년 전 조회 2,678
10년 전 조회 1,849
10년 전 조회 3,559
10년 전 조회 1,995
10년 전 조회 2,248
10년 전 조회 2,989
10년 전 조회 1,889
10년 전 조회 1,890
10년 전 조회 4,193
10년 전 조회 1,909
10년 전 조회 1,807
10년 전 조회 1,812
10년 전 조회 1,704
10년 전 조회 2,218
10년 전 조회 1,942
10년 전 조회 1,820
10년 전 조회 1,960
10년 전 조회 2,469
10년 전 조회 3,305
10년 전 조회 2,348
10년 전 조회 2,598
10년 전 조회 3,139
10년 전 조회 2,519
10년 전 조회 2,341
10년 전 조회 2,253
10년 전 조회 5,141
10년 전 조회 1,935
10년 전 조회 2,256
10년 전 조회 2,804
10년 전 조회 2,257
10년 전 조회 3,934
10년 전 조회 2,189
10년 전 조회 2,142
10년 전 조회 2,223
10년 전 조회 5,782
10년 전 조회 2,088
10년 전 조회 3,649
10년 전 조회 2,942
10년 전 조회 3,563
10년 전 조회 3,190
10년 전 조회 3,890
10년 전 조회 2,056
10년 전 조회 2,364
10년 전 조회 4,143
10년 전 조회 2,516
10년 전 조회 1,908
10년 전 조회 2,894
10년 전 조회 2,636
10년 전 조회 2,376
10년 전 조회 2,348
10년 전 조회 2,577
10년 전 조회 2,216
10년 전 조회 1,811
10년 전 조회 2,560
10년 전 조회 3,001
10년 전 조회 2,553