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,302
10년 전 조회 2,208
10년 전 조회 1,892
10년 전 조회 2,233
10년 전 조회 2,023
10년 전 조회 1,801
10년 전 조회 2,391
10년 전 조회 1,818
10년 전 조회 2,109
10년 전 조회 1,814
10년 전 조회 1,638
10년 전 조회 3,053
10년 전 조회 2,179
10년 전 조회 2,257
10년 전 조회 2,033
10년 전 조회 2,301
10년 전 조회 2,180
10년 전 조회 1,922
10년 전 조회 2,352
10년 전 조회 2,825
10년 전 조회 2,243
10년 전 조회 2,129
10년 전 조회 2,135
10년 전 조회 2,065
10년 전 조회 2,715
10년 전 조회 2,647
10년 전 조회 1,699
10년 전 조회 2,099
10년 전 조회 1,698
10년 전 조회 2,036
10년 전 조회 3,491
10년 전 조회 2,073
10년 전 조회 4,151
10년 전 조회 2,754
10년 전 조회 2,379
10년 전 조회 1,734
10년 전 조회 2,098
10년 전 조회 2,390
10년 전 조회 2,804
10년 전 조회 4,137
10년 전 조회 2,934
10년 전 조회 3,087
10년 전 조회 3,558
10년 전 조회 5,193
10년 전 조회 2,767
10년 전 조회 1,935
10년 전 조회 3,643
10년 전 조회 2,083
10년 전 조회 2,332
10년 전 조회 3,079
10년 전 조회 1,972
10년 전 조회 1,980
10년 전 조회 4,267
10년 전 조회 1,998
10년 전 조회 1,888
10년 전 조회 1,893
10년 전 조회 1,793
10년 전 조회 2,306
10년 전 조회 2,028
10년 전 조회 1,908
10년 전 조회 2,042
10년 전 조회 2,567
10년 전 조회 3,389
10년 전 조회 2,451
10년 전 조회 2,716
10년 전 조회 3,236
10년 전 조회 2,615
10년 전 조회 2,403
10년 전 조회 2,352
10년 전 조회 5,222
10년 전 조회 2,015
10년 전 조회 2,348
10년 전 조회 2,890
10년 전 조회 2,349
10년 전 조회 4,026
10년 전 조회 2,266
10년 전 조회 2,219
10년 전 조회 2,309
10년 전 조회 5,871
10년 전 조회 2,180
10년 전 조회 3,746
10년 전 조회 3,030
10년 전 조회 3,673
10년 전 조회 3,300
10년 전 조회 3,981
10년 전 조회 2,155
10년 전 조회 2,427
10년 전 조회 4,243
10년 전 조회 2,607
10년 전 조회 1,996
10년 전 조회 2,985
10년 전 조회 2,722
10년 전 조회 2,461
10년 전 조회 2,433
10년 전 조회 2,645
10년 전 조회 2,296
10년 전 조회 1,888
10년 전 조회 2,645
10년 전 조회 3,095
10년 전 조회 2,648