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,154
10년 전 조회 2,063
10년 전 조회 1,753
10년 전 조회 2,097
10년 전 조회 1,882
10년 전 조회 1,643
10년 전 조회 2,262
10년 전 조회 1,691
10년 전 조회 1,992
10년 전 조회 1,657
10년 전 조회 1,506
10년 전 조회 2,919
10년 전 조회 2,045
10년 전 조회 2,141
10년 전 조회 1,889
10년 전 조회 2,175
10년 전 조회 2,023
10년 전 조회 1,789
10년 전 조회 2,239
10년 전 조회 2,689
10년 전 조회 2,106
10년 전 조회 1,984
10년 전 조회 1,958
10년 전 조회 1,929
10년 전 조회 2,573
10년 전 조회 2,512
10년 전 조회 1,553
10년 전 조회 1,967
10년 전 조회 1,542
10년 전 조회 1,896
10년 전 조회 3,362
10년 전 조회 1,920
10년 전 조회 3,987
10년 전 조회 2,610
10년 전 조회 2,228
10년 전 조회 1,585
10년 전 조회 1,963
10년 전 조회 2,262
10년 전 조회 2,677
10년 전 조회 4,006
10년 전 조회 2,797
10년 전 조회 2,960
10년 전 조회 3,408
10년 전 조회 5,048
10년 전 조회 2,625
10년 전 조회 1,797
10년 전 조회 3,517
10년 전 조회 1,949
10년 전 조회 2,190
10년 전 조회 2,939
10년 전 조회 1,837
10년 전 조회 1,836
10년 전 조회 4,145
10년 전 조회 1,868
10년 전 조회 1,765
10년 전 조회 1,750
10년 전 조회 1,649
10년 전 조회 2,171
10년 전 조회 1,898
10년 전 조회 1,774
10년 전 조회 1,910
10년 전 조회 2,424
10년 전 조회 3,262
10년 전 조회 2,300
10년 전 조회 2,555
10년 전 조회 3,099
10년 전 조회 2,469
10년 전 조회 2,303
10년 전 조회 2,204
10년 전 조회 5,096
10년 전 조회 1,892
10년 전 조회 2,212
10년 전 조회 2,757
10년 전 조회 2,201
10년 전 조회 3,893
10년 전 조회 2,149
10년 전 조회 2,101
10년 전 조회 2,182
10년 전 조회 5,735
10년 전 조회 2,040
10년 전 조회 3,593
10년 전 조회 2,894
10년 전 조회 3,526
10년 전 조회 3,125
10년 전 조회 3,844
10년 전 조회 2,006
10년 전 조회 2,306
10년 전 조회 4,088
10년 전 조회 2,470
10년 전 조회 1,864
10년 전 조회 2,851
10년 전 조회 2,592
10년 전 조회 2,321
10년 전 조회 2,281
10년 전 조회 2,512
10년 전 조회 2,158
10년 전 조회 1,772
10년 전 조회 2,523
10년 전 조회 2,959
10년 전 조회 2,507