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,185
10년 전 조회 2,094
10년 전 조회 1,782
10년 전 조회 2,128
10년 전 조회 1,904
10년 전 조회 1,674
10년 전 조회 2,284
10년 전 조회 1,721
10년 전 조회 2,022
10년 전 조회 1,687
10년 전 조회 1,539
10년 전 조회 2,956
10년 전 조회 2,073
10년 전 조회 2,164
10년 전 조회 1,918
10년 전 조회 2,204
10년 전 조회 2,059
10년 전 조회 1,827
10년 전 조회 2,266
10년 전 조회 2,717
10년 전 조회 2,145
10년 전 조회 2,020
10년 전 조회 1,990
10년 전 조회 1,962
10년 전 조회 2,605
10년 전 조회 2,547
10년 전 조회 1,586
10년 전 조회 1,997
10년 전 조회 1,573
10년 전 조회 1,926
10년 전 조회 3,389
10년 전 조회 1,962
10년 전 조회 4,018
10년 전 조회 2,642
10년 전 조회 2,262
10년 전 조회 1,628
10년 전 조회 1,992
10년 전 조회 2,287
10년 전 조회 2,717
10년 전 조회 4,032
10년 전 조회 2,827
10년 전 조회 2,982
10년 전 조회 3,440
10년 전 조회 5,084
10년 전 조회 2,653
10년 전 조회 1,829
10년 전 조회 3,546
10년 전 조회 1,975
10년 전 조회 2,228
10년 전 조회 2,962
10년 전 조회 1,871
10년 전 조회 1,870
10년 전 조회 4,174
10년 전 조회 1,900
10년 전 조회 1,795
10년 전 조회 1,787
10년 전 조회 1,681
10년 전 조회 2,200
10년 전 조회 1,921
10년 전 조회 1,807
10년 전 조회 1,940
10년 전 조회 2,447
10년 전 조회 3,284
10년 전 조회 2,329
10년 전 조회 2,582
10년 전 조회 3,126
10년 전 조회 2,497
10년 전 조회 2,326
10년 전 조회 2,232
10년 전 조회 5,125
10년 전 조회 1,919
10년 전 조회 2,239
10년 전 조회 2,780
10년 전 조회 2,237
10년 전 조회 3,918
10년 전 조회 2,182
10년 전 조회 2,126
10년 전 조회 2,201
10년 전 조회 5,763
10년 전 조회 2,074
10년 전 조회 3,628
10년 전 조회 2,925
10년 전 조회 3,551
10년 전 조회 3,162
10년 전 조회 3,870
10년 전 조회 2,035
10년 전 조회 2,333
10년 전 조회 4,128
10년 전 조회 2,493
10년 전 조회 1,892
10년 전 조회 2,871
10년 전 조회 2,617
10년 전 조회 2,355
10년 전 조회 2,320
10년 전 조회 2,554
10년 전 조회 2,190
10년 전 조회 1,797
10년 전 조회 2,546
10년 전 조회 2,986
10년 전 조회 2,538