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,166
10년 전 조회 2,080
10년 전 조회 1,765
10년 전 조회 2,111
10년 전 조회 1,893
10년 전 조회 1,666
10년 전 조회 2,273
10년 전 조회 1,703
10년 전 조회 2,005
10년 전 조회 1,671
10년 전 조회 1,521
10년 전 조회 2,935
10년 전 조회 2,058
10년 전 조회 2,151
10년 전 조회 1,903
10년 전 조회 2,191
10년 전 조회 2,041
10년 전 조회 1,803
10년 전 조회 2,252
10년 전 조회 2,705
10년 전 조회 2,128
10년 전 조회 2,002
10년 전 조회 1,970
10년 전 조회 1,943
10년 전 조회 2,594
10년 전 조회 2,528
10년 전 조회 1,566
10년 전 조회 1,982
10년 전 조회 1,556
10년 전 조회 1,912
10년 전 조회 3,379
10년 전 조회 1,943
10년 전 조회 4,000
10년 전 조회 2,625
10년 전 조회 2,249
10년 전 조회 1,605
10년 전 조회 1,975
10년 전 조회 2,273
10년 전 조회 2,699
10년 전 조회 4,015
10년 전 조회 2,810
10년 전 조회 2,969
10년 전 조회 3,423
10년 전 조회 5,065
10년 전 조회 2,640
10년 전 조회 1,812
10년 전 조회 3,531
10년 전 조회 1,963
10년 전 조회 2,209
10년 전 조회 2,949
10년 전 조회 1,857
10년 전 조회 1,850
10년 전 조회 4,157
10년 전 조회 1,883
10년 전 조회 1,780
10년 전 조회 1,773
10년 전 조회 1,664
10년 전 조회 2,187
10년 전 조회 1,907
10년 전 조회 1,789
10년 전 조회 1,925
10년 전 조회 2,438
10년 전 조회 3,276
10년 전 조회 2,318
10년 전 조회 2,571
10년 전 조회 3,112
10년 전 조회 2,483
10년 전 조회 2,316
10년 전 조회 2,217
10년 전 조회 5,108
10년 전 조회 1,906
10년 전 조회 2,228
10년 전 조회 2,770
10년 전 조회 2,219
10년 전 조회 3,905
10년 전 조회 2,164
10년 전 조회 2,115
10년 전 조회 2,193
10년 전 조회 5,747
10년 전 조회 2,048
10년 전 조회 3,605
10년 전 조회 2,907
10년 전 조회 3,537
10년 전 조회 3,142
10년 전 조회 3,849
10년 전 조회 2,020
10년 전 조회 2,321
10년 전 조회 4,110
10년 전 조회 2,480
10년 전 조회 1,874
10년 전 조회 2,862
10년 전 조회 2,605
10년 전 조회 2,334
10년 전 조회 2,293
10년 전 조회 2,534
10년 전 조회 2,172
10년 전 조회 1,785
10년 전 조회 2,533
10년 전 조회 2,974
10년 전 조회 2,519