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,005
10년 전 조회 1,931
10년 전 조회 1,604
10년 전 조회 1,958
10년 전 조회 1,756
10년 전 조회 1,497
10년 전 조회 2,103
10년 전 조회 1,553
10년 전 조회 1,837
10년 전 조회 1,513
10년 전 조회 1,358
10년 전 조회 2,772
10년 전 조회 1,882
10년 전 조회 2,012
10년 전 조회 1,730
10년 전 조회 2,022
10년 전 조회 1,883
10년 전 조회 1,643
10년 전 조회 2,089
10년 전 조회 2,540
10년 전 조회 1,945
10년 전 조회 1,829
10년 전 조회 1,820
10년 전 조회 1,773
10년 전 조회 2,427
10년 전 조회 2,348
10년 전 조회 1,413
10년 전 조회 1,814
10년 전 조회 1,386
10년 전 조회 1,736
10년 전 조회 3,188
10년 전 조회 1,758
10년 전 조회 3,816
10년 전 조회 2,446
10년 전 조회 2,056
10년 전 조회 1,423
10년 전 조회 1,776
10년 전 조회 2,085
10년 전 조회 2,504
10년 전 조회 3,842
10년 전 조회 2,638
10년 전 조회 2,780
10년 전 조회 3,241
10년 전 조회 4,872
10년 전 조회 2,489
10년 전 조회 1,636
10년 전 조회 3,341
10년 전 조회 1,745
10년 전 조회 1,989
10년 전 조회 2,786
10년 전 조회 1,641
10년 전 조회 1,670
10년 전 조회 3,992
10년 전 조회 1,706
10년 전 조회 1,576
10년 전 조회 1,568
10년 전 조회 1,457
10년 전 조회 2,002
10년 전 조회 1,718
10년 전 조회 1,603
10년 전 조회 1,737
10년 전 조회 2,231
10년 전 조회 3,107
10년 전 조회 2,120
10년 전 조회 2,383
10년 전 조회 2,935
10년 전 조회 2,301
10년 전 조회 2,122
10년 전 조회 2,041
10년 전 조회 4,936
10년 전 조회 1,720
10년 전 조회 2,036
10년 전 조회 2,598
10년 전 조회 2,042
10년 전 조회 3,753
10년 전 조회 1,996
10년 전 조회 1,933
10년 전 조회 2,017
10년 전 조회 5,575
10년 전 조회 1,875
10년 전 조회 3,449
10년 전 조회 2,717
10년 전 조회 3,379
10년 전 조회 2,964
10년 전 조회 3,687
10년 전 조회 1,825
10년 전 조회 2,123
10년 전 조회 3,934
10년 전 조회 2,296
10년 전 조회 1,680
10년 전 조회 2,679
10년 전 조회 2,421
10년 전 조회 2,156
10년 전 조회 2,099
10년 전 조회 2,328
10년 전 조회 1,975
10년 전 조회 1,604
10년 전 조회 2,346
10년 전 조회 2,817
10년 전 조회 2,368