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,201
10년 전 조회 2,108
10년 전 조회 1,801
10년 전 조회 2,138
10년 전 조회 1,921
10년 전 조회 1,695
10년 전 조회 2,299
10년 전 조회 1,733
10년 전 조회 2,030
10년 전 조회 1,701
10년 전 조회 1,551
10년 전 조회 2,966
10년 전 조회 2,088
10년 전 조회 2,181
10년 전 조회 1,933
10년 전 조회 2,223
10년 전 조회 2,074
10년 전 조회 1,835
10년 전 조회 2,278
10년 전 조회 2,726
10년 전 조회 2,150
10년 전 조회 2,032
10년 전 조회 2,009
10년 전 조회 1,975
10년 전 조회 2,623
10년 전 조회 2,558
10년 전 조회 1,606
10년 전 조회 2,009
10년 전 조회 1,580
10년 전 조회 1,937
10년 전 조회 3,406
10년 전 조회 1,976
10년 전 조회 4,030
10년 전 조회 2,657
10년 전 조회 2,273
10년 전 조회 1,638
10년 전 조회 2,005
10년 전 조회 2,294
10년 전 조회 2,724
10년 전 조회 4,045
10년 전 조회 2,843
10년 전 조회 2,996
10년 전 조회 3,450
10년 전 조회 5,091
10년 전 조회 2,667
10년 전 조회 1,840
10년 전 조회 3,556
10년 전 조회 1,985
10년 전 조회 2,240
10년 전 조회 2,976
10년 전 조회 1,882
10년 전 조회 1,879
10년 전 조회 4,183
10년 전 조회 1,904
10년 전 조회 1,800
10년 전 조회 1,800
10년 전 조회 1,696
10년 전 조회 2,208
10년 전 조회 1,938
10년 전 조회 1,815
10년 전 조회 1,956
10년 전 조회 2,463
10년 전 조회 3,298
10년 전 조회 2,338
10년 전 조회 2,589
10년 전 조회 3,133
10년 전 조회 2,512
10년 전 조회 2,336
10년 전 조회 2,241
10년 전 조회 5,135
10년 전 조회 1,927
10년 전 조회 2,250
10년 전 조회 2,800
10년 전 조회 2,248
10년 전 조회 3,926
10년 전 조회 2,188
10년 전 조회 2,134
10년 전 조회 2,214
10년 전 조회 5,774
10년 전 조회 2,082
10년 전 조회 3,640
10년 전 조회 2,935
10년 전 조회 3,559
10년 전 조회 3,178
10년 전 조회 3,880
10년 전 조회 2,043
10년 전 조회 2,351
10년 전 조회 4,136
10년 전 조회 2,508
10년 전 조회 1,900
10년 전 조회 2,883
10년 전 조회 2,632
10년 전 조회 2,369
10년 전 조회 2,337
10년 전 조회 2,564
10년 전 조회 2,204
10년 전 조회 1,805
10년 전 조회 2,553
10년 전 조회 2,997
10년 전 조회 2,545