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,222
10년 전 조회 2,132
10년 전 조회 1,822
10년 전 조회 2,153
10년 전 조회 1,943
10년 전 조회 1,717
10년 전 조회 2,318
10년 전 조회 1,748
10년 전 조회 2,052
10년 전 조회 1,733
10년 전 조회 1,581
10년 전 조회 2,982
10년 전 조회 2,105
10년 전 조회 2,199
10년 전 조회 1,962
10년 전 조회 2,240
10년 전 조회 2,099
10년 전 조회 1,867
10년 전 조회 2,298
10년 전 조회 2,746
10년 전 조회 2,173
10년 전 조회 2,057
10년 전 조회 2,037
10년 전 조회 1,999
10년 전 조회 2,645
10년 전 조회 2,575
10년 전 조회 1,622
10년 전 조회 2,027
10년 전 조회 1,610
10년 전 조회 1,956
10년 전 조회 3,422
10년 전 조회 1,997
10년 전 조회 4,059
10년 전 조회 2,679
10년 전 조회 2,293
10년 전 조회 1,657
10년 전 조회 2,017
10년 전 조회 2,315
10년 전 조회 2,739
10년 전 조회 4,056
10년 전 조회 2,864
10년 전 조회 3,010
10년 전 조회 3,473
10년 전 조회 5,121
10년 전 조회 2,683
10년 전 조회 1,856
10년 전 조회 3,567
10년 전 조회 2,005
10년 전 조회 2,257
10년 전 조회 2,999
10년 전 조회 1,897
10년 전 조회 1,900
10년 전 조회 4,203
10년 전 조회 1,916
10년 전 조회 1,815
10년 전 조회 1,823
10년 전 조회 1,718
10년 전 조회 2,228
10년 전 조회 1,950
10년 전 조회 1,826
10년 전 조회 1,970
10년 전 조회 2,479
10년 전 조회 3,312
10년 전 조회 2,361
10년 전 조회 2,606
10년 전 조회 3,150
10년 전 조회 2,531
10년 전 조회 2,347
10년 전 조회 2,263
10년 전 조회 5,144
10년 전 조회 1,949
10년 전 조회 2,268
10년 전 조회 2,819
10년 전 조회 2,266
10년 전 조회 3,950
10년 전 조회 2,195
10년 전 조회 2,157
10년 전 조회 2,232
10년 전 조회 5,797
10년 전 조회 2,101
10년 전 조회 3,656
10년 전 조회 2,954
10년 전 조회 3,577
10년 전 조회 3,199
10년 전 조회 3,904
10년 전 조회 2,069
10년 전 조회 2,373
10년 전 조회 4,155
10년 전 조회 2,526
10년 전 조회 1,924
10년 전 조회 2,908
10년 전 조회 2,647
10년 전 조회 2,385
10년 전 조회 2,365
10년 전 조회 2,590
10년 전 조회 2,225
10년 전 조회 1,820
10년 전 조회 2,573
10년 전 조회 3,019
10년 전 조회 2,572