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,027
10년 전 조회 1,949
10년 전 조회 1,632
10년 전 조회 1,988
10년 전 조회 1,785
10년 전 조회 1,526
10년 전 조회 2,133
10년 전 조회 1,582
10년 전 조회 1,858
10년 전 조회 1,538
10년 전 조회 1,388
10년 전 조회 2,793
10년 전 조회 1,911
10년 전 조회 2,040
10년 전 조회 1,763
10년 전 조회 2,050
10년 전 조회 1,906
10년 전 조회 1,670
10년 전 조회 2,119
10년 전 조회 2,569
10년 전 조회 1,974
10년 전 조회 1,853
10년 전 조회 1,837
10년 전 조회 1,799
10년 전 조회 2,451
10년 전 조회 2,373
10년 전 조회 1,442
10년 전 조회 1,845
10년 전 조회 1,413
10년 전 조회 1,771
10년 전 조회 3,219
10년 전 조회 1,786
10년 전 조회 3,838
10년 전 조회 2,480
10년 전 조회 2,084
10년 전 조회 1,458
10년 전 조회 1,801
10년 전 조회 2,122
10년 전 조회 2,543
10년 전 조회 3,882
10년 전 조회 2,678
10년 전 조회 2,808
10년 전 조회 3,270
10년 전 조회 4,908
10년 전 조회 2,519
10년 전 조회 1,654
10년 전 조회 3,364
10년 전 조회 1,788
10년 전 조회 2,035
10년 전 조회 2,825
10년 전 조회 1,684
10년 전 조회 1,712
10년 전 조회 4,027
10년 전 조회 1,745
10년 전 조회 1,613
10년 전 조회 1,604
10년 전 조회 1,495
10년 전 조회 2,031
10년 전 조회 1,763
10년 전 조회 1,643
10년 전 조회 1,777
10년 전 조회 2,273
10년 전 조회 3,146
10년 전 조회 2,152
10년 전 조회 2,411
10년 전 조회 2,980
10년 전 조회 2,340
10년 전 조회 2,158
10년 전 조회 2,072
10년 전 조회 4,980
10년 전 조회 1,754
10년 전 조회 2,083
10년 전 조회 2,636
10년 전 조회 2,077
10년 전 조회 3,779
10년 전 조회 2,031
10년 전 조회 1,973
10년 전 조회 2,045
10년 전 조회 5,607
10년 전 조회 1,908
10년 전 조회 3,475
10년 전 조회 2,762
10년 전 조회 3,413
10년 전 조회 3,001
10년 전 조회 3,716
10년 전 조회 1,858
10년 전 조회 2,167
10년 전 조회 3,974
10년 전 조회 2,338
10년 전 조회 1,715
10년 전 조회 2,717
10년 전 조회 2,460
10년 전 조회 2,198
10년 전 조회 2,145
10년 전 조회 2,367
10년 전 조회 2,023
10년 전 조회 1,640
10년 전 조회 2,384
10년 전 조회 2,849
10년 전 조회 2,401