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,316
10년 전 조회 2,241
10년 전 조회 1,915
10년 전 조회 2,253
10년 전 조회 2,050
10년 전 조회 1,825
10년 전 조회 2,419
10년 전 조회 1,848
10년 전 조회 2,138
10년 전 조회 1,842
10년 전 조회 1,662
10년 전 조회 3,078
10년 전 조회 2,197
10년 전 조회 2,278
10년 전 조회 2,066
10년 전 조회 2,319
10년 전 조회 2,210
10년 전 조회 1,953
10년 전 조회 2,376
10년 전 조회 2,854
10년 전 조회 2,267
10년 전 조회 2,152
10년 전 조회 2,164
10년 전 조회 2,099
10년 전 조회 2,744
10년 전 조회 2,669
10년 전 조회 1,722
10년 전 조회 2,131
10년 전 조회 1,720
10년 전 조회 2,067
10년 전 조회 3,509
10년 전 조회 2,100
10년 전 조회 4,183
10년 전 조회 2,777
10년 전 조회 2,406
10년 전 조회 1,751
10년 전 조회 2,129
10년 전 조회 2,410
10년 전 조회 2,832
10년 전 조회 4,160
10년 전 조회 2,955
10년 전 조회 3,105
10년 전 조회 3,582
10년 전 조회 5,215
10년 전 조회 2,787
10년 전 조회 1,962
10년 전 조회 3,672
10년 전 조회 2,108
10년 전 조회 2,360
10년 전 조회 3,105
10년 전 조회 1,998
10년 전 조회 2,006
10년 전 조회 4,294
10년 전 조회 2,021
10년 전 조회 1,906
10년 전 조회 1,925
10년 전 조회 1,821
10년 전 조회 2,337
10년 전 조회 2,047
10년 전 조회 1,933
10년 전 조회 2,076
10년 전 조회 2,596
10년 전 조회 3,419
10년 전 조회 2,481
10년 전 조회 2,743
10년 전 조회 3,267
10년 전 조회 2,645
10년 전 조회 2,432
10년 전 조회 2,371
10년 전 조회 5,254
10년 전 조회 2,051
10년 전 조회 2,374
10년 전 조회 2,911
10년 전 조회 2,374
10년 전 조회 4,054
10년 전 조회 2,292
10년 전 조회 2,245
10년 전 조회 2,339
10년 전 조회 5,900
10년 전 조회 2,207
10년 전 조회 3,775
10년 전 조회 3,061
10년 전 조회 3,696
10년 전 조회 3,325
10년 전 조회 4,011
10년 전 조회 2,173
10년 전 조회 2,454
10년 전 조회 4,272
10년 전 조회 2,637
10년 전 조회 2,025
10년 전 조회 3,008
10년 전 조회 2,750
10년 전 조회 2,486
10년 전 조회 2,459
10년 전 조회 2,660
10년 전 조회 2,322
10년 전 조회 1,916
10년 전 조회 2,668
10년 전 조회 3,112
10년 전 조회 2,675