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,144
10년 전 조회 2,055
10년 전 조회 1,744
10년 전 조회 2,090
10년 전 조회 1,880
10년 전 조회 1,636
10년 전 조회 2,255
10년 전 조회 1,685
10년 전 조회 1,989
10년 전 조회 1,645
10년 전 조회 1,500
10년 전 조회 2,915
10년 전 조회 2,035
10년 전 조회 2,133
10년 전 조회 1,880
10년 전 조회 2,171
10년 전 조회 2,015
10년 전 조회 1,786
10년 전 조회 2,230
10년 전 조회 2,681
10년 전 조회 2,102
10년 전 조회 1,973
10년 전 조회 1,943
10년 전 조회 1,920
10년 전 조회 2,569
10년 전 조회 2,500
10년 전 조회 1,546
10년 전 조회 1,964
10년 전 조회 1,535
10년 전 조회 1,885
10년 전 조회 3,354
10년 전 조회 1,914
10년 전 조회 3,977
10년 전 조회 2,601
10년 전 조회 2,218
10년 전 조회 1,575
10년 전 조회 1,952
10년 전 조회 2,255
10년 전 조회 2,668
10년 전 조회 3,998
10년 전 조회 2,790
10년 전 조회 2,951
10년 전 조회 3,401
10년 전 조회 5,041
10년 전 조회 2,621
10년 전 조회 1,789
10년 전 조회 3,511
10년 전 조회 1,943
10년 전 조회 2,181
10년 전 조회 2,933
10년 전 조회 1,826
10년 전 조회 1,831
10년 전 조회 4,140
10년 전 조회 1,855
10년 전 조회 1,756
10년 전 조회 1,742
10년 전 조회 1,639
10년 전 조회 2,163
10년 전 조회 1,892
10년 전 조회 1,766
10년 전 조회 1,901
10년 전 조회 2,420
10년 전 조회 3,255
10년 전 조회 2,291
10년 전 조회 2,548
10년 전 조회 3,091
10년 전 조회 2,459
10년 전 조회 2,295
10년 전 조회 2,197
10년 전 조회 5,086
10년 전 조회 1,887
10년 전 조회 2,203
10년 전 조회 2,750
10년 전 조회 2,195
10년 전 조회 3,889
10년 전 조회 2,141
10년 전 조회 2,093
10년 전 조회 2,181
10년 전 조회 5,730
10년 전 조회 2,032
10년 전 조회 3,591
10년 전 조회 2,891
10년 전 조회 3,522
10년 전 조회 3,122
10년 전 조회 3,837
10년 전 조회 1,994
10년 전 조회 2,299
10년 전 조회 4,083
10년 전 조회 2,461
10년 전 조회 1,858
10년 전 조회 2,840
10년 전 조회 2,586
10년 전 조회 2,312
10년 전 조회 2,273
10년 전 조회 2,505
10년 전 조회 2,152
10년 전 조회 1,768
10년 전 조회 2,519
10년 전 조회 2,957
10년 전 조회 2,501