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,276
10년 전 조회 2,169
10년 전 조회 1,868
10년 전 조회 2,201
10년 전 조회 1,990
10년 전 조회 1,772
10년 전 조회 2,363
10년 전 조회 1,789
10년 전 조회 2,080
10년 전 조회 1,782
10년 전 조회 1,610
10년 전 조회 3,028
10년 전 조회 2,146
10년 전 조회 2,231
10년 전 조회 2,010
10년 전 조회 2,277
10년 전 조회 2,143
10년 전 조회 1,895
10년 전 조회 2,330
10년 전 조회 2,791
10년 전 조회 2,215
10년 전 조회 2,109
10년 전 조회 2,095
10년 전 조회 2,039
10년 전 조회 2,695
10년 전 조회 2,616
10년 전 조회 1,670
10년 전 조회 2,072
10년 전 조회 1,665
10년 전 조회 2,010
10년 전 조회 3,470
10년 전 조회 2,043
10년 전 조회 4,116
10년 전 조회 2,730
10년 전 조회 2,352
10년 전 조회 1,707
10년 전 조회 2,067
10년 전 조회 2,371
10년 전 조회 2,786
10년 전 조회 4,107
10년 전 조회 2,909
10년 전 조회 3,053
10년 전 조회 3,526
10년 전 조회 5,165
10년 전 조회 2,742
10년 전 조회 1,905
10년 전 조회 3,615
10년 전 조회 2,052
10년 전 조회 2,301
10년 전 조회 3,051
10년 전 조회 1,935
10년 전 조회 1,948
10년 전 조회 4,240
10년 전 조회 1,970
10년 전 조회 1,854
10년 전 조회 1,856
10년 전 조회 1,759
10년 전 조회 2,271
10년 전 조회 1,999
10년 전 조회 1,875
10년 전 조회 2,006
10년 전 조회 2,535
10년 전 조회 3,364
10년 전 조회 2,417
10년 전 조회 2,674
10년 전 조회 3,201
10년 전 조회 2,580
10년 전 조회 2,379
10년 전 조회 2,322
10년 전 조회 5,188
10년 전 조회 1,988
10년 전 조회 2,319
10년 전 조회 2,860
10년 전 조회 2,318
10년 전 조회 3,992
10년 전 조회 2,241
10년 전 조회 2,201
10년 전 조회 2,273
10년 전 조회 5,841
10년 전 조회 2,150
10년 전 조회 3,710
10년 전 조회 2,997
10년 전 조회 3,632
10년 전 조회 3,260
10년 전 조회 3,944
10년 전 조회 2,122
10년 전 조회 2,409
10년 전 조회 4,206
10년 전 조회 2,574
10년 전 조회 1,966
10년 전 조회 2,954
10년 전 조회 2,690
10년 전 조회 2,435
10년 전 조회 2,411
10년 전 조회 2,621
10년 전 조회 2,262
10년 전 조회 1,862
10년 전 조회 2,616
10년 전 조회 3,061
10년 전 조회 2,612