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,332
10년 전 조회 2,248
10년 전 조회 1,921
10년 전 조회 2,258
10년 전 조회 2,059
10년 전 조회 1,834
10년 전 조회 2,426
10년 전 조회 1,856
10년 전 조회 2,144
10년 전 조회 1,845
10년 전 조회 1,670
10년 전 조회 3,084
10년 전 조회 2,206
10년 전 조회 2,285
10년 전 조회 2,069
10년 전 조회 2,320
10년 전 조회 2,217
10년 전 조회 1,957
10년 전 조회 2,379
10년 전 조회 2,859
10년 전 조회 2,274
10년 전 조회 2,159
10년 전 조회 2,169
10년 전 조회 2,105
10년 전 조회 2,751
10년 전 조회 2,674
10년 전 조회 1,724
10년 전 조회 2,142
10년 전 조회 1,723
10년 전 조회 2,071
10년 전 조회 3,512
10년 전 조회 2,108
10년 전 조회 4,195
10년 전 조회 2,781
10년 전 조회 2,413
10년 전 조회 1,759
10년 전 조회 2,133
10년 전 조회 2,415
10년 전 조회 2,836
10년 전 조회 4,165
10년 전 조회 2,958
10년 전 조회 3,113
10년 전 조회 3,586
10년 전 조회 5,225
10년 전 조회 2,791
10년 전 조회 1,964
10년 전 조회 3,677
10년 전 조회 2,118
10년 전 조회 2,366
10년 전 조회 3,113
10년 전 조회 2,006
10년 전 조회 2,014
10년 전 조회 4,300
10년 전 조회 2,030
10년 전 조회 1,913
10년 전 조회 1,933
10년 전 조회 1,830
10년 전 조회 2,347
10년 전 조회 2,051
10년 전 조회 1,941
10년 전 조회 2,083
10년 전 조회 2,604
10년 전 조회 3,429
10년 전 조회 2,491
10년 전 조회 2,753
10년 전 조회 3,271
10년 전 조회 2,652
10년 전 조회 2,445
10년 전 조회 2,382
10년 전 조회 5,264
10년 전 조회 2,054
10년 전 조회 2,382
10년 전 조회 2,915
10년 전 조회 2,379
10년 전 조회 4,062
10년 전 조회 2,295
10년 전 조회 2,250
10년 전 조회 2,348
10년 전 조회 5,906
10년 전 조회 2,215
10년 전 조회 3,778
10년 전 조회 3,064
10년 전 조회 3,703
10년 전 조회 3,331
10년 전 조회 4,015
10년 전 조회 2,177
10년 전 조회 2,462
10년 전 조회 4,278
10년 전 조회 2,639
10년 전 조회 2,030
10년 전 조회 3,011
10년 전 조회 2,756
10년 전 조회 2,492
10년 전 조회 2,462
10년 전 조회 2,671
10년 전 조회 2,329
10년 전 조회 1,920
10년 전 조회 2,674
10년 전 조회 3,119
10년 전 조회 2,685