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,192
10년 전 조회 2,100
10년 전 조회 1,792
10년 전 조회 2,137
10년 전 조회 1,915
10년 전 조회 1,685
10년 전 조회 2,296
10년 전 조회 1,729
10년 전 조회 2,026
10년 전 조회 1,698
10년 전 조회 1,546
10년 전 조회 2,961
10년 전 조회 2,082
10년 전 조회 2,172
10년 전 조회 1,929
10년 전 조회 2,216
10년 전 조회 2,067
10년 전 조회 1,831
10년 전 조회 2,273
10년 전 조회 2,723
10년 전 조회 2,148
10년 전 조회 2,030
10년 전 조회 2,002
10년 전 조회 1,973
10년 전 조회 2,617
10년 전 조회 2,554
10년 전 조회 1,602
10년 전 조회 2,006
10년 전 조회 1,577
10년 전 조회 1,932
10년 전 조회 3,397
10년 전 조회 1,974
10년 전 조회 4,026
10년 전 조회 2,650
10년 전 조회 2,268
10년 전 조회 1,635
10년 전 조회 2,000
10년 전 조회 2,289
10년 전 조회 2,722
10년 전 조회 4,038
10년 전 조회 2,837
10년 전 조회 2,991
10년 전 조회 3,445
10년 전 조회 5,090
10년 전 조회 2,660
10년 전 조회 1,836
10년 전 조회 3,548
10년 전 조회 1,980
10년 전 조회 2,234
10년 전 조회 2,970
10년 전 조회 1,881
10년 전 조회 1,876
10년 전 조회 4,181
10년 전 조회 1,903
10년 전 조회 1,797
10년 전 조회 1,797
10년 전 조회 1,690
10년 전 조회 2,205
10년 전 조회 1,936
10년 전 조회 1,812
10년 전 조회 1,951
10년 전 조회 2,457
10년 전 조회 3,292
10년 전 조회 2,335
10년 전 조회 2,586
10년 전 조회 3,132
10년 전 조회 2,507
10년 전 조회 2,333
10년 전 조회 2,237
10년 전 조회 5,133
10년 전 조회 1,925
10년 전 조회 2,244
10년 전 조회 2,792
10년 전 조회 2,241
10년 전 조회 3,924
10년 전 조회 2,184
10년 전 조회 2,131
10년 전 조회 2,209
10년 전 조회 5,768
10년 전 조회 2,079
10년 전 조회 3,635
10년 전 조회 2,931
10년 전 조회 3,556
10년 전 조회 3,167
10년 전 조회 3,875
10년 전 조회 2,039
10년 전 조회 2,343
10년 전 조회 4,133
10년 전 조회 2,500
10년 전 조회 1,897
10년 전 조회 2,878
10년 전 조회 2,627
10년 전 조회 2,363
10년 전 조회 2,330
10년 전 조회 2,560
10년 전 조회 2,199
10년 전 조회 1,801
10년 전 조회 2,549
10년 전 조회 2,994
10년 전 조회 2,542