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,136
10년 전 조회 2,046
10년 전 조회 1,735
10년 전 조회 2,081
10년 전 조회 1,871
10년 전 조회 1,626
10년 전 조회 2,243
10년 전 조회 1,673
10년 전 조회 1,974
10년 전 조회 1,632
10년 전 조회 1,489
10년 전 조회 2,908
10년 전 조회 2,025
10년 전 조회 2,125
10년 전 조회 1,860
10년 전 조회 2,166
10년 전 조회 2,011
10년 전 조회 1,776
10년 전 조회 2,218
10년 전 조회 2,674
10년 전 조회 2,095
10년 전 조회 1,958
10년 전 조회 1,930
10년 전 조회 1,911
10년 전 조회 2,556
10년 전 조회 2,491
10년 전 조회 1,539
10년 전 조회 1,952
10년 전 조회 1,529
10년 전 조회 1,872
10년 전 조회 3,344
10년 전 조회 1,899
10년 전 조회 3,967
10년 전 조회 2,585
10년 전 조회 2,206
10년 전 조회 1,563
10년 전 조회 1,939
10년 전 조회 2,242
10년 전 조회 2,657
10년 전 조회 3,985
10년 전 조회 2,776
10년 전 조회 2,935
10년 전 조회 3,391
10년 전 조회 5,034
10년 전 조회 2,616
10년 전 조회 1,782
10년 전 조회 3,496
10년 전 조회 1,927
10년 전 조회 2,167
10년 전 조회 2,923
10년 전 조회 1,815
10년 전 조회 1,822
10년 전 조회 4,131
10년 전 조회 1,841
10년 전 조회 1,744
10년 전 조회 1,731
10년 전 조회 1,624
10년 전 조회 2,156
10년 전 조회 1,875
10년 전 조회 1,758
10년 전 조회 1,891
10년 전 조회 2,408
10년 전 조회 3,249
10년 전 조회 2,284
10년 전 조회 2,537
10년 전 조회 3,083
10년 전 조회 2,449
10년 전 조회 2,281
10년 전 조회 2,185
10년 전 조회 5,076
10년 전 조회 1,877
10년 전 조회 2,192
10년 전 조회 2,744
10년 전 조회 2,184
10년 전 조회 3,882
10년 전 조회 2,135
10년 전 조회 2,088
10년 전 조회 2,165
10년 전 조회 5,720
10년 전 조회 2,026
10년 전 조회 3,580
10년 전 조회 2,877
10년 전 조회 3,509
10년 전 조회 3,108
10년 전 조회 3,831
10년 전 조회 1,987
10년 전 조회 2,286
10년 전 조회 4,072
10년 전 조회 2,455
10년 전 조회 1,846
10년 전 조회 2,831
10년 전 조회 2,574
10년 전 조회 2,298
10년 전 조회 2,262
10년 전 조회 2,498
10년 전 조회 2,145
10년 전 조회 1,755
10년 전 조회 2,512
10년 전 조회 2,954
10년 전 조회 2,492