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,197
10년 전 조회 2,104
10년 전 조회 1,797
10년 전 조회 2,137
10년 전 조회 1,917
10년 전 조회 1,688
10년 전 조회 2,298
10년 전 조회 1,732
10년 전 조회 2,028
10년 전 조회 1,699
10년 전 조회 1,550
10년 전 조회 2,964
10년 전 조회 2,087
10년 전 조회 2,176
10년 전 조회 1,932
10년 전 조회 2,222
10년 전 조회 2,070
10년 전 조회 1,833
10년 전 조회 2,276
10년 전 조회 2,726
10년 전 조회 2,148
10년 전 조회 2,031
10년 전 조회 2,005
10년 전 조회 1,973
10년 전 조회 2,621
10년 전 조회 2,555
10년 전 조회 1,604
10년 전 조회 2,008
10년 전 조회 1,579
10년 전 조회 1,935
10년 전 조회 3,405
10년 전 조회 1,975
10년 전 조회 4,026
10년 전 조회 2,654
10년 전 조회 2,272
10년 전 조회 1,636
10년 전 조회 2,005
10년 전 조회 2,289
10년 전 조회 2,724
10년 전 조회 4,044
10년 전 조회 2,839
10년 전 조회 2,995
10년 전 조회 3,448
10년 전 조회 5,090
10년 전 조회 2,665
10년 전 조회 1,836
10년 전 조회 3,553
10년 전 조회 1,982
10년 전 조회 2,236
10년 전 조회 2,972
10년 전 조회 1,881
10년 전 조회 1,876
10년 전 조회 4,181
10년 전 조회 1,904
10년 전 조회 1,799
10년 전 조회 1,799
10년 전 조회 1,692
10년 전 조회 2,207
10년 전 조회 1,937
10년 전 조회 1,814
10년 전 조회 1,953
10년 전 조회 2,459
10년 전 조회 3,296
10년 전 조회 2,337
10년 전 조회 2,588
10년 전 조회 3,132
10년 전 조회 2,510
10년 전 조회 2,336
10년 전 조회 2,240
10년 전 조회 5,135
10년 전 조회 1,926
10년 전 조회 2,246
10년 전 조회 2,796
10년 전 조회 2,246
10년 전 조회 3,926
10년 전 조회 2,188
10년 전 조회 2,133
10년 전 조회 2,210
10년 전 조회 5,771
10년 전 조회 2,081
10년 전 조회 3,638
10년 전 조회 2,934
10년 전 조회 3,558
10년 전 조회 3,170
10년 전 조회 3,878
10년 전 조회 2,040
10년 전 조회 2,350
10년 전 조회 4,134
10년 전 조회 2,504
10년 전 조회 1,898
10년 전 조회 2,881
10년 전 조회 2,631
10년 전 조회 2,365
10년 전 조회 2,333
10년 전 조회 2,562
10년 전 조회 2,203
10년 전 조회 1,804
10년 전 조회 2,551
10년 전 조회 2,995
10년 전 조회 2,543