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,281
10년 전 조회 2,180
10년 전 조회 1,878
10년 전 조회 2,212
10년 전 조회 1,997
10년 전 조회 1,782
10년 전 조회 2,372
10년 전 조회 1,797
10년 전 조회 2,088
10년 전 조회 1,795
10년 전 조회 1,618
10년 전 조회 3,038
10년 전 조회 2,161
10년 전 조회 2,242
10년 전 조회 2,020
10년 전 조회 2,286
10년 전 조회 2,159
10년 전 조회 1,909
10년 전 조회 2,341
10년 전 조회 2,808
10년 전 조회 2,230
10년 전 조회 2,117
10년 전 조회 2,107
10년 전 조회 2,048
10년 전 조회 2,700
10년 전 조회 2,629
10년 전 조회 1,677
10년 전 조회 2,086
10년 전 조회 1,678
10년 전 조회 2,019
10년 전 조회 3,478
10년 전 조회 2,052
10년 전 조회 4,126
10년 전 조회 2,739
10년 전 조회 2,367
10년 전 조회 1,719
10년 전 조회 2,077
10년 전 조회 2,376
10년 전 조회 2,794
10년 전 조회 4,117
10년 전 조회 2,922
10년 전 조회 3,063
10년 전 조회 3,542
10년 전 조회 5,176
10년 전 조회 2,752
10년 전 조회 1,915
10년 전 조회 3,623
10년 전 조회 2,063
10년 전 조회 2,313
10년 전 조회 3,063
10년 전 조회 1,952
10년 전 조회 1,963
10년 전 조회 4,253
10년 전 조회 1,978
10년 전 조회 1,869
10년 전 조회 1,870
10년 전 조회 1,773
10년 전 조회 2,286
10년 전 조회 2,007
10년 전 조회 1,891
10년 전 조회 2,019
10년 전 조회 2,547
10년 전 조회 3,377
10년 전 조회 2,433
10년 전 조회 2,691
10년 전 조회 3,213
10년 전 조회 2,594
10년 전 조회 2,390
10년 전 조회 2,334
10년 전 조회 5,203
10년 전 조회 1,999
10년 전 조회 2,331
10년 전 조회 2,869
10년 전 조회 2,326
10년 전 조회 4,002
10년 전 조회 2,252
10년 전 조회 2,209
10년 전 조회 2,288
10년 전 조회 5,853
10년 전 조회 2,160
10년 전 조회 3,722
10년 전 조회 3,009
10년 전 조회 3,640
10년 전 조회 3,276
10년 전 조회 3,959
10년 전 조회 2,134
10년 전 조회 2,414
10년 전 조회 4,215
10년 전 조회 2,585
10년 전 조회 1,974
10년 전 조회 2,970
10년 전 조회 2,706
10년 전 조회 2,444
10년 전 조회 2,419
10년 전 조회 2,629
10년 전 조회 2,275
10년 전 조회 1,875
10년 전 조회 2,629
10년 전 조회 3,071
10년 전 조회 2,626