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년 전 조회 1,975
10년 전 조회 1,905
10년 전 조회 1,583
10년 전 조회 1,940
10년 전 조회 1,733
10년 전 조회 1,471
10년 전 조회 2,077
10년 전 조회 1,529
10년 전 조회 1,809
10년 전 조회 1,482
10년 전 조회 1,334
10년 전 조회 2,743
10년 전 조회 1,859
10년 전 조회 1,974
10년 전 조회 1,710
10년 전 조회 1,995
10년 전 조회 1,848
10년 전 조회 1,615
10년 전 조회 2,055
10년 전 조회 2,514
10년 전 조회 1,905
10년 전 조회 1,799
10년 전 조회 1,795
10년 전 조회 1,747
10년 전 조회 2,402
10년 전 조회 2,314
10년 전 조회 1,390
10년 전 조회 1,783
10년 전 조회 1,357
10년 전 조회 1,710
10년 전 조회 3,164
10년 전 조회 1,726
10년 전 조회 3,784
10년 전 조회 2,415
10년 전 조회 2,029
10년 전 조회 1,393
10년 전 조회 1,741
10년 전 조회 2,058
10년 전 조회 2,480
10년 전 조회 3,799
10년 전 조회 2,616
10년 전 조회 2,767
10년 전 조회 3,212
10년 전 조회 4,843
10년 전 조회 2,457
10년 전 조회 1,601
10년 전 조회 3,311
10년 전 조회 1,712
10년 전 조회 1,966
10년 전 조회 2,733
10년 전 조회 1,612
10년 전 조회 1,641
10년 전 조회 3,958
10년 전 조회 1,680
10년 전 조회 1,553
10년 전 조회 1,540
10년 전 조회 1,424
10년 전 조회 1,964
10년 전 조회 1,685
10년 전 조회 1,570
10년 전 조회 1,706
10년 전 조회 2,203
10년 전 조회 3,083
10년 전 조회 2,096
10년 전 조회 2,364
10년 전 조회 2,907
10년 전 조회 2,270
10년 전 조회 2,097
10년 전 조회 2,010
10년 전 조회 4,903
10년 전 조회 1,693
10년 전 조회 2,001
10년 전 조회 2,572
10년 전 조회 2,014
10년 전 조회 3,735
10년 전 조회 1,973
10년 전 조회 1,902
10년 전 조회 1,987
10년 전 조회 5,548
10년 전 조회 1,847
10년 전 조회 3,410
10년 전 조회 2,679
10년 전 조회 3,342
10년 전 조회 2,928
10년 전 조회 3,662
10년 전 조회 1,801
10년 전 조회 2,099
10년 전 조회 3,903
10년 전 조회 2,265
10년 전 조회 1,643
10년 전 조회 2,641
10년 전 조회 2,390
10년 전 조회 2,121
10년 전 조회 2,073
10년 전 조회 2,295
10년 전 조회 1,931
10년 전 조회 1,577
10년 전 조회 2,315
10년 전 조회 2,791
10년 전 조회 2,341