COMING SOON 🚀

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,089
10년 전 조회 2,006
10년 전 조회 1,693
10년 전 조회 2,048
10년 전 조회 1,830
10년 전 조회 1,582
10년 전 조회 2,198
10년 전 조회 1,635
10년 전 조회 1,924
10년 전 조회 1,591
10년 전 조회 1,452
10년 전 조회 2,860
10년 전 조회 1,968
10년 전 조회 2,090
10년 전 조회 1,812
10년 전 조회 2,121
10년 전 조회 1,966
10년 전 조회 1,725
10년 전 조회 2,173
10년 전 조회 2,629
10년 전 조회 2,047
10년 전 조회 1,910
10년 전 조회 1,888
10년 전 조회 1,862
10년 전 조회 2,504
10년 전 조회 2,442
10년 전 조회 1,493
10년 전 조회 1,901
10년 전 조회 1,482
10년 전 조회 1,822
10년 전 조회 3,293
10년 전 조회 1,846
10년 전 조회 3,917
10년 전 조회 2,528
10년 전 조회 2,144
10년 전 조회 1,508
10년 전 조회 1,882
10년 전 조회 2,184
10년 전 조회 2,615
10년 전 조회 3,939
10년 전 조회 2,740
10년 전 조회 2,877
10년 전 조회 3,332
10년 전 조회 4,970
10년 전 조회 2,581
10년 전 조회 1,733
10년 전 조회 3,438
10년 전 조회 1,854
10년 전 조회 2,099
10년 전 조회 2,876
10년 전 조회 1,764
10년 전 조회 1,778
10년 전 조회 4,087
10년 전 조회 1,798
10년 전 조회 1,688
10년 전 조회 1,676
10년 전 조회 1,567
10년 전 조회 2,106
10년 전 조회 1,830
10년 전 조회 1,713
10년 전 조회 1,845
10년 전 조회 2,352
10년 전 조회 3,209
10년 전 조회 2,228
10년 전 조회 2,482
10년 전 조회 3,041
10년 전 조회 2,405
10년 전 조회 2,231
10년 전 조회 2,135
10년 전 조회 5,034
10년 전 조회 1,828
10년 전 조회 2,140
10년 전 조회 2,695
10년 전 조회 2,149
10년 전 조회 3,843
10년 전 조회 2,093
10년 전 조회 2,044
10년 전 조회 2,124
10년 전 조회 5,670
10년 전 조회 1,986
10년 전 조회 3,549
10년 전 조회 2,833
10년 전 조회 3,478
10년 전 조회 3,065
10년 전 조회 3,785
10년 전 조회 1,932
10년 전 조회 2,234
10년 전 조회 4,037
10년 전 조회 2,412
10년 전 조회 1,793
10년 전 조회 2,786
10년 전 조회 2,524
10년 전 조회 2,256
10년 전 조회 2,205
10년 전 조회 2,435
10년 전 조회 2,104
10년 전 조회 1,701
10년 전 조회 2,451
10년 전 조회 2,912
10년 전 조회 2,458