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년 전 조회 1,775
10년 전 조회 1,700
10년 전 조회 1,370
10년 전 조회 1,716
10년 전 조회 1,519
10년 전 조회 1,258
10년 전 조회 1,861
10년 전 조회 1,307
10년 전 조회 1,612
10년 전 조회 1,261
10년 전 조회 1,124
10년 전 조회 2,526
10년 전 조회 1,622
10년 전 조회 1,687
10년 전 조회 1,464
10년 전 조회 1,726
10년 전 조회 1,576
10년 전 조회 1,357
10년 전 조회 1,785
10년 전 조회 2,241
10년 전 조회 1,631
10년 전 조회 1,511
10년 전 조회 1,539
10년 전 조회 1,494
10년 전 조회 2,152
10년 전 조회 2,058
10년 전 조회 1,133
10년 전 조회 1,542
10년 전 조회 1,087
10년 전 조회 1,451
10년 전 조회 2,943
10년 전 조회 1,479
10년 전 조회 3,529
10년 전 조회 2,157
10년 전 조회 1,774
10년 전 조회 1,142
10년 전 조회 1,498
10년 전 조회 1,796
10년 전 조회 2,229
10년 전 조회 3,527
10년 전 조회 2,346
10년 전 조회 2,480
10년 전 조회 2,952
10년 전 조회 4,602
10년 전 조회 2,174
10년 전 조회 1,350
10년 전 조회 3,110
10년 전 조회 1,475
10년 전 조회 1,708
10년 전 조회 2,488
10년 전 조회 1,365
10년 전 조회 1,388
10년 전 조회 3,690
10년 전 조회 1,400
10년 전 조회 1,272
10년 전 조회 1,242
10년 전 조회 1,169
10년 전 조회 1,686
10년 전 조회 1,424
10년 전 조회 1,306
10년 전 조회 1,419
10년 전 조회 1,912
10년 전 조회 2,886
10년 전 조회 1,834
10년 전 조회 2,070
10년 전 조회 2,633
10년 전 조회 2,015
10년 전 조회 1,813
10년 전 조회 1,754
10년 전 조회 4,625
10년 전 조회 1,402
10년 전 조회 1,742
10년 전 조회 2,276
10년 전 조회 1,738
10년 전 조회 3,469
10년 전 조회 1,701
10년 전 조회 1,593
10년 전 조회 1,700
10년 전 조회 5,267
10년 전 조회 1,567
10년 전 조회 3,139
10년 전 조회 2,408
10년 전 조회 3,081
10년 전 조회 2,658
10년 전 조회 3,395
10년 전 조회 1,546
10년 전 조회 1,818
10년 전 조회 3,630
10년 전 조회 1,975
10년 전 조회 1,373
10년 전 조회 2,363
10년 전 조회 2,118
10년 전 조회 1,846
10년 전 조회 1,806
10년 전 조회 2,019
10년 전 조회 1,665
10년 전 조회 1,305
10년 전 조회 2,082
10년 전 조회 2,546
10년 전 조회 2,090