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,203
10년 전 조회 2,110
10년 전 조회 1,805
10년 전 조회 2,142
10년 전 조회 1,922
10년 전 조회 1,699
10년 전 조회 2,302
10년 전 조회 1,737
10년 전 조회 2,032
10년 전 조회 1,708
10년 전 조회 1,554
10년 전 조회 2,970
10년 전 조회 2,089
10년 전 조회 2,187
10년 전 조회 1,939
10년 전 조회 2,226
10년 전 조회 2,079
10년 전 조회 1,840
10년 전 조회 2,282
10년 전 조회 2,731
10년 전 조회 2,152
10년 전 조회 2,035
10년 전 조회 2,014
10년 전 조회 1,978
10년 전 조회 2,629
10년 전 조회 2,561
10년 전 조회 1,609
10년 전 조회 2,016
10년 전 조회 1,586
10년 전 조회 1,941
10년 전 조회 3,407
10년 전 조회 1,978
10년 전 조회 4,034
10년 전 조회 2,660
10년 전 조회 2,277
10년 전 조회 1,640
10년 전 조회 2,010
10년 전 조회 2,296
10년 전 조회 2,725
10년 전 조회 4,045
10년 전 조회 2,846
10년 전 조회 2,998
10년 전 조회 3,453
10년 전 조회 5,093
10년 전 조회 2,672
10년 전 조회 1,844
10년 전 조회 3,556
10년 전 조회 1,990
10년 전 조회 2,244
10년 전 조회 2,980
10년 전 조회 1,886
10년 전 조회 1,882
10년 전 조회 4,187
10년 전 조회 1,907
10년 전 조회 1,803
10년 전 조회 1,805
10년 전 조회 1,698
10년 전 조회 2,213
10년 전 조회 1,941
10년 전 조회 1,818
10년 전 조회 1,959
10년 전 조회 2,465
10년 전 조회 3,299
10년 전 조회 2,343
10년 전 조회 2,592
10년 전 조회 3,134
10년 전 조회 2,516
10년 전 조회 2,338
10년 전 조회 2,243
10년 전 조회 5,137
10년 전 조회 1,931
10년 전 조회 2,252
10년 전 조회 2,802
10년 전 조회 2,252
10년 전 조회 3,931
10년 전 조회 2,189
10년 전 조회 2,136
10년 전 조회 2,219
10년 전 조회 5,778
10년 전 조회 2,084
10년 전 조회 3,642
10년 전 조회 2,938
10년 전 조회 3,561
10년 전 조회 3,183
10년 전 조회 3,881
10년 전 조회 2,047
10년 전 조회 2,358
10년 전 조회 4,141
10년 전 조회 2,512
10년 전 조회 1,904
10년 전 조회 2,891
10년 전 조회 2,633
10년 전 조회 2,370
10년 전 조회 2,341
10년 전 조회 2,566
10년 전 조회 2,211
10년 전 조회 1,809
10년 전 조회 2,557
10년 전 조회 2,997
10년 전 조회 2,546