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,158
10년 전 조회 2,067
10년 전 조회 1,757
10년 전 조회 2,099
10년 전 조회 1,884
10년 전 조회 1,652
10년 전 조회 2,263
10년 전 조회 1,694
10년 전 조회 1,992
10년 전 조회 1,659
10년 전 조회 1,508
10년 전 조회 2,922
10년 전 조회 2,046
10년 전 조회 2,143
10년 전 조회 1,892
10년 전 조회 2,179
10년 전 조회 2,024
10년 전 조회 1,792
10년 전 조회 2,246
10년 전 조회 2,691
10년 전 조회 2,109
10년 전 조회 1,985
10년 전 조회 1,960
10년 전 조회 1,932
10년 전 조회 2,582
10년 전 조회 2,517
10년 전 조회 1,555
10년 전 조회 1,969
10년 전 조회 1,544
10년 전 조회 1,899
10년 전 조회 3,363
10년 전 조회 1,923
10년 전 조회 3,989
10년 전 조회 2,613
10년 전 조회 2,233
10년 전 조회 1,591
10년 전 조회 1,968
10년 전 조회 2,265
10년 전 조회 2,682
10년 전 조회 4,009
10년 전 조회 2,799
10년 전 조회 2,963
10년 전 조회 3,409
10년 전 조회 5,054
10년 전 조회 2,627
10년 전 조회 1,802
10년 전 조회 3,518
10년 전 조회 1,952
10년 전 조회 2,193
10년 전 조회 2,941
10년 전 조회 1,842
10년 전 조회 1,838
10년 전 조회 4,147
10년 전 조회 1,873
10년 전 조회 1,768
10년 전 조회 1,754
10년 전 조회 1,650
10년 전 조회 2,175
10년 전 조회 1,900
10년 전 조회 1,776
10년 전 조회 1,915
10년 전 조회 2,429
10년 전 조회 3,267
10년 전 조회 2,303
10년 전 조회 2,555
10년 전 조회 3,101
10년 전 조회 2,472
10년 전 조회 2,306
10년 전 조회 2,208
10년 전 조회 5,099
10년 전 조회 1,897
10년 전 조회 2,216
10년 전 조회 2,760
10년 전 조회 2,203
10년 전 조회 3,895
10년 전 조회 2,150
10년 전 조회 2,107
10년 전 조회 2,183
10년 전 조회 5,736
10년 전 조회 2,044
10년 전 조회 3,594
10년 전 조회 2,898
10년 전 조회 3,528
10년 전 조회 3,131
10년 전 조회 3,845
10년 전 조회 2,009
10년 전 조회 2,309
10년 전 조회 4,092
10년 전 조회 2,473
10년 전 조회 1,866
10년 전 조회 2,853
10년 전 조회 2,596
10년 전 조회 2,324
10년 전 조회 2,284
10년 전 조회 2,519
10년 전 조회 2,161
10년 전 조회 1,772
10년 전 조회 2,525
10년 전 조회 2,961
10년 전 조회 2,512