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,362
10년 전 조회 2,280
10년 전 조회 1,951
10년 전 조회 2,287
10년 전 조회 2,094
10년 전 조회 1,867
10년 전 조회 2,463
10년 전 조회 1,885
10년 전 조회 2,172
10년 전 조회 1,880
10년 전 조회 1,698
10년 전 조회 3,116
10년 전 조회 2,234
10년 전 조회 2,317
10년 전 조회 2,104
10년 전 조회 2,349
10년 전 조회 2,241
10년 전 조회 1,995
10년 전 조회 2,407
10년 전 조회 2,883
10년 전 조회 2,306
10년 전 조회 2,200
10년 전 조회 2,204
10년 전 조회 2,146
10년 전 조회 2,783
10년 전 조회 2,709
10년 전 조회 1,753
10년 전 조회 2,180
10년 전 조회 1,745
10년 전 조회 2,095
10년 전 조회 3,535
10년 전 조회 2,138
10년 전 조회 4,224
10년 전 조회 2,814
10년 전 조회 2,437
10년 전 조회 1,781
10년 전 조회 2,166
10년 전 조회 2,440
10년 전 조회 2,859
10년 전 조회 4,196
10년 전 조회 2,980
10년 전 조회 3,131
10년 전 조회 3,614
10년 전 조회 5,259
10년 전 조회 2,820
10년 전 조회 1,990
10년 전 조회 3,715
10년 전 조회 2,140
10년 전 조회 2,392
10년 전 조회 3,150
10년 전 조회 2,027
10년 전 조회 2,039
10년 전 조회 4,332
10년 전 조회 2,065
10년 전 조회 1,946
10년 전 조회 1,965
10년 전 조회 1,867
10년 전 조회 2,384
10년 전 조회 2,088
10년 전 조회 1,972
10년 전 조회 2,108
10년 전 조회 2,637
10년 전 조회 3,463
10년 전 조회 2,521
10년 전 조회 2,783
10년 전 조회 3,307
10년 전 조회 2,689
10년 전 조회 2,479
10년 전 조회 2,411
10년 전 조회 5,299
10년 전 조회 2,098
10년 전 조회 2,412
10년 전 조회 2,946
10년 전 조회 2,421
10년 전 조회 4,098
10년 전 조회 2,328
10년 전 조회 2,274
10년 전 조회 2,380
10년 전 조회 5,950
10년 전 조회 2,248
10년 전 조회 3,808
10년 전 조회 3,103
10년 전 조회 3,735
10년 전 조회 3,371
10년 전 조회 4,042
10년 전 조회 2,219
10년 전 조회 2,491
10년 전 조회 4,304
10년 전 조회 2,675
10년 전 조회 2,060
10년 전 조회 3,039
10년 전 조회 2,789
10년 전 조회 2,521
10년 전 조회 2,499
10년 전 조회 2,706
10년 전 조회 2,357
10년 전 조회 1,950
10년 전 조회 2,700
10년 전 조회 3,144
10년 전 조회 2,712