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,212
10년 전 조회 1,900
10년 전 조회 2,240
10년 전 조회 2,030
10년 전 조회 1,807
10년 전 조회 2,401
10년 전 조회 1,831
10년 전 조회 2,116
10년 전 조회 1,822
10년 전 조회 1,645
10년 전 조회 3,058
10년 전 조회 2,181
10년 전 조회 2,261
10년 전 조회 2,041
10년 전 조회 2,303
10년 전 조회 2,187
10년 전 조회 1,935
10년 전 조회 2,357
10년 전 조회 2,834
10년 전 조회 2,248
10년 전 조회 2,137
10년 전 조회 2,141
10년 전 조회 2,079
10년 전 조회 2,724
10년 전 조회 2,651
10년 전 조회 1,705
10년 전 조회 2,104
10년 전 조회 1,703
10년 전 조회 2,041
10년 전 조회 3,494
10년 전 조회 2,080
10년 전 조회 4,159
10년 전 조회 2,759
10년 전 조회 2,389
10년 전 조회 1,737
10년 전 조회 2,106
10년 전 조회 2,396
10년 전 조회 2,813
10년 전 조회 4,142
10년 전 조회 2,938
10년 전 조회 3,089
10년 전 조회 3,568
10년 전 조회 5,199
10년 전 조회 2,776
10년 전 조회 1,942
10년 전 조회 3,652
10년 전 조회 2,089
10년 전 조회 2,340
10년 전 조회 3,089
10년 전 조회 1,980
10년 전 조회 1,983
10년 전 조회 4,274
10년 전 조회 2,005
10년 전 조회 1,891
10년 전 조회 1,899
10년 전 조회 1,806
10년 전 조회 2,316
10년 전 조회 2,036
10년 전 조회 1,914
10년 전 조회 2,051
10년 전 조회 2,574
10년 전 조회 3,397
10년 전 조회 2,462
10년 전 조회 2,724
10년 전 조회 3,242
10년 전 조회 2,622
10년 전 조회 2,412
10년 전 조회 2,359
10년 전 조회 5,229
10년 전 조회 2,021
10년 전 조회 2,355
10년 전 조회 2,893
10년 전 조회 2,357
10년 전 조회 4,032
10년 전 조회 2,270
10년 전 조회 2,224
10년 전 조회 2,312
10년 전 조회 5,876
10년 전 조회 2,189
10년 전 조회 3,752
10년 전 조회 3,038
10년 전 조회 3,680
10년 전 조회 3,306
10년 전 조회 3,990
10년 전 조회 2,157
10년 전 조회 2,433
10년 전 조회 4,249
10년 전 조회 2,615
10년 전 조회 2,007
10년 전 조회 2,992
10년 전 조회 2,732
10년 전 조회 2,468
10년 전 조회 2,444
10년 전 조회 2,650
10년 전 조회 2,306
10년 전 조회 1,893
10년 전 조회 2,653
10년 전 조회 3,101
10년 전 조회 2,657