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,193
10년 전 조회 2,101
10년 전 조회 1,795
10년 전 조회 2,137
10년 전 조회 1,915
10년 전 조회 1,687
10년 전 조회 2,297
10년 전 조회 1,729
10년 전 조회 2,026
10년 전 조회 1,698
10년 전 조회 1,548
10년 전 조회 2,962
10년 전 조회 2,082
10년 전 조회 2,173
10년 전 조회 1,929
10년 전 조회 2,218
10년 전 조회 2,067
10년 전 조회 1,831
10년 전 조회 2,274
10년 전 조회 2,724
10년 전 조회 2,148
10년 전 조회 2,031
10년 전 조회 2,003
10년 전 조회 1,973
10년 전 조회 2,617
10년 전 조회 2,554
10년 전 조회 1,602
10년 전 조회 2,006
10년 전 조회 1,577
10년 전 조회 1,932
10년 전 조회 3,398
10년 전 조회 1,974
10년 전 조회 4,026
10년 전 조회 2,651
10년 전 조회 2,269
10년 전 조회 1,635
10년 전 조회 2,000
10년 전 조회 2,289
10년 전 조회 2,723
10년 전 조회 4,040
10년 전 조회 2,837
10년 전 조회 2,993
10년 전 조회 3,445
10년 전 조회 5,090
10년 전 조회 2,660
10년 전 조회 1,836
10년 전 조회 3,549
10년 전 조회 1,981
10년 전 조회 2,234
10년 전 조회 2,971
10년 전 조회 1,881
10년 전 조회 1,876
10년 전 조회 4,181
10년 전 조회 1,903
10년 전 조회 1,798
10년 전 조회 1,798
10년 전 조회 1,691
10년 전 조회 2,205
10년 전 조회 1,937
10년 전 조회 1,813
10년 전 조회 1,951
10년 전 조회 2,457
10년 전 조회 3,292
10년 전 조회 2,335
10년 전 조회 2,586
10년 전 조회 3,132
10년 전 조회 2,508
10년 전 조회 2,334
10년 전 조회 2,238
10년 전 조회 5,133
10년 전 조회 1,926
10년 전 조회 2,246
10년 전 조회 2,794
10년 전 조회 2,242
10년 전 조회 3,924
10년 전 조회 2,185
10년 전 조회 2,132
10년 전 조회 2,210
10년 전 조회 5,769
10년 전 조회 2,080
10년 전 조회 3,637
10년 전 조회 2,932
10년 전 조회 3,556
10년 전 조회 3,167
10년 전 조회 3,875
10년 전 조회 2,039
10년 전 조회 2,346
10년 전 조회 4,133
10년 전 조회 2,501
10년 전 조회 1,897
10년 전 조회 2,879
10년 전 조회 2,628
10년 전 조회 2,363
10년 전 조회 2,332
10년 전 조회 2,560
10년 전 조회 2,199
10년 전 조회 1,802
10년 전 조회 2,550
10년 전 조회 2,994
10년 전 조회 2,543