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,289
10년 전 조회 2,190
10년 전 조회 1,886
10년 전 조회 2,221
10년 전 조회 2,005
10년 전 조회 1,792
10년 전 조회 2,379
10년 전 조회 1,807
10년 전 조회 2,101
10년 전 조회 1,803
10년 전 조회 1,630
10년 전 조회 3,047
10년 전 조회 2,170
10년 전 조회 2,251
10년 전 조회 2,027
10년 전 조회 2,292
10년 전 조회 2,170
10년 전 조회 1,915
10년 전 조회 2,349
10년 전 조회 2,818
10년 전 조회 2,236
10년 전 조회 2,123
10년 전 조회 2,118
10년 전 조회 2,057
10년 전 조회 2,709
10년 전 조회 2,638
10년 전 조회 1,688
10년 전 조회 2,098
10년 전 조회 1,686
10년 전 조회 2,026
10년 전 조회 3,487
10년 전 조회 2,062
10년 전 조회 4,141
10년 전 조회 2,751
10년 전 조회 2,376
10년 전 조회 1,726
10년 전 조회 2,087
10년 전 조회 2,382
10년 전 조회 2,799
10년 전 조회 4,126
10년 전 조회 2,928
10년 전 조회 3,077
10년 전 조회 3,549
10년 전 조회 5,186
10년 전 조회 2,762
10년 전 조회 1,928
10년 전 조회 3,634
10년 전 조회 2,070
10년 전 조회 2,327
10년 전 조회 3,070
10년 전 조회 1,959
10년 전 조회 1,971
10년 전 조회 4,256
10년 전 조회 1,990
10년 전 조회 1,881
10년 전 조회 1,882
10년 전 조회 1,781
10년 전 조회 2,299
10년 전 조회 2,014
10년 전 조회 1,898
10년 전 조회 2,030
10년 전 조회 2,559
10년 전 조회 3,381
10년 전 조회 2,442
10년 전 조회 2,704
10년 전 조회 3,224
10년 전 조회 2,602
10년 전 조회 2,395
10년 전 조회 2,345
10년 전 조회 5,215
10년 전 조회 2,004
10년 전 조회 2,341
10년 전 조회 2,879
10년 전 조회 2,339
10년 전 조회 4,013
10년 전 조회 2,258
10년 전 조회 2,214
10년 전 조회 2,297
10년 전 조회 5,862
10년 전 조회 2,170
10년 전 조회 3,730
10년 전 조회 3,013
10년 전 조회 3,660
10년 전 조회 3,288
10년 전 조회 3,969
10년 전 조회 2,141
10년 전 조회 2,424
10년 전 조회 4,234
10년 전 조회 2,595
10년 전 조회 1,987
10년 전 조회 2,975
10년 전 조회 2,714
10년 전 조회 2,454
10년 전 조회 2,429
10년 전 조회 2,637
10년 전 조회 2,286
10년 전 조회 1,881
10년 전 조회 2,636
10년 전 조회 3,080
10년 전 조회 2,634