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,307
10년 전 조회 2,213
10년 전 조회 1,900
10년 전 조회 2,242
10년 전 조회 2,031
10년 전 조회 1,811
10년 전 조회 2,402
10년 전 조회 1,831
10년 전 조회 2,116
10년 전 조회 1,826
10년 전 조회 1,646
10년 전 조회 3,058
10년 전 조회 2,181
10년 전 조회 2,262
10년 전 조회 2,044
10년 전 조회 2,303
10년 전 조회 2,188
10년 전 조회 1,935
10년 전 조회 2,359
10년 전 조회 2,834
10년 전 조회 2,248
10년 전 조회 2,139
10년 전 조회 2,142
10년 전 조회 2,080
10년 전 조회 2,724
10년 전 조회 2,651
10년 전 조회 1,705
10년 전 조회 2,110
10년 전 조회 1,704
10년 전 조회 2,042
10년 전 조회 3,494
10년 전 조회 2,083
10년 전 조회 4,160
10년 전 조회 2,761
10년 전 조회 2,389
10년 전 조회 1,737
10년 전 조회 2,110
10년 전 조회 2,396
10년 전 조회 2,815
10년 전 조회 4,143
10년 전 조회 2,938
10년 전 조회 3,089
10년 전 조회 3,569
10년 전 조회 5,200
10년 전 조회 2,777
10년 전 조회 1,943
10년 전 조회 3,652
10년 전 조회 2,089
10년 전 조회 2,344
10년 전 조회 3,090
10년 전 조회 1,981
10년 전 조회 1,985
10년 전 조회 4,274
10년 전 조회 2,005
10년 전 조회 1,892
10년 전 조회 1,899
10년 전 조회 1,807
10년 전 조회 2,319
10년 전 조회 2,036
10년 전 조회 1,918
10년 전 조회 2,055
10년 전 조회 2,575
10년 전 조회 3,397
10년 전 조회 2,462
10년 전 조회 2,725
10년 전 조회 3,242
10년 전 조회 2,622
10년 전 조회 2,412
10년 전 조회 2,360
10년 전 조회 5,230
10년 전 조회 2,024
10년 전 조회 2,355
10년 전 조회 2,893
10년 전 조회 2,357
10년 전 조회 4,033
10년 전 조회 2,274
10년 전 조회 2,226
10년 전 조회 2,315
10년 전 조회 5,877
10년 전 조회 2,190
10년 전 조회 3,752
10년 전 조회 3,039
10년 전 조회 3,680
10년 전 조회 3,307
10년 전 조회 3,991
10년 전 조회 2,157
10년 전 조회 2,435
10년 전 조회 4,249
10년 전 조회 2,616
10년 전 조회 2,010
10년 전 조회 2,994
10년 전 조회 2,735
10년 전 조회 2,469
10년 전 조회 2,446
10년 전 조회 2,650
10년 전 조회 2,308
10년 전 조회 1,895
10년 전 조회 2,653
10년 전 조회 3,101
10년 전 조회 2,659