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,098
10년 전 조회 1,784
10년 전 조회 2,130
10년 전 조회 1,909
10년 전 조회 1,680
10년 전 조회 2,287
10년 전 조회 1,726
10년 전 조회 2,024
10년 전 조회 1,689
10년 전 조회 1,541
10년 전 조회 2,957
10년 전 조회 2,076
10년 전 조회 2,169
10년 전 조회 1,921
10년 전 조회 2,208
10년 전 조회 2,062
10년 전 조회 1,829
10년 전 조회 2,269
10년 전 조회 2,720
10년 전 조회 2,147
10년 전 조회 2,023
10년 전 조회 1,998
10년 전 조회 1,966
10년 전 조회 2,612
10년 전 조회 2,548
10년 전 조회 1,590
10년 전 조회 2,002
10년 전 조회 1,576
10년 전 조회 1,930
10년 전 조회 3,391
10년 전 조회 1,966
10년 전 조회 4,020
10년 전 조회 2,645
10년 전 조회 2,262
10년 전 조회 1,632
10년 전 조회 1,995
10년 전 조회 2,288
10년 전 조회 2,719
10년 전 조회 4,035
10년 전 조회 2,830
10년 전 조회 2,984
10년 전 조회 3,443
10년 전 조회 5,086
10년 전 조회 2,654
10년 전 조회 1,831
10년 전 조회 3,546
10년 전 조회 1,977
10년 전 조회 2,232
10년 전 조회 2,965
10년 전 조회 1,877
10년 전 조회 1,873
10년 전 조회 4,178
10년 전 조회 1,902
10년 전 조회 1,797
10년 전 조회 1,792
10년 전 조회 1,684
10년 전 조회 2,202
10년 전 조회 1,929
10년 전 조회 1,810
10년 전 조회 1,943
10년 전 조회 2,448
10년 전 조회 3,287
10년 전 조회 2,330
10년 전 조회 2,583
10년 전 조회 3,128
10년 전 조회 2,500
10년 전 조회 2,329
10년 전 조회 2,235
10년 전 조회 5,128
10년 전 조회 1,920
10년 전 조회 2,240
10년 전 조회 2,788
10년 전 조회 2,238
10년 전 조회 3,921
10년 전 조회 2,183
10년 전 조회 2,128
10년 전 조회 2,206
10년 전 조회 5,765
10년 전 조회 2,076
10년 전 조회 3,631
10년 전 조회 2,927
10년 전 조회 3,553
10년 전 조회 3,162
10년 전 조회 3,873
10년 전 조회 2,038
10년 전 조회 2,338
10년 전 조회 4,129
10년 전 조회 2,496
10년 전 조회 1,895
10년 전 조회 2,874
10년 전 조회 2,619
10년 전 조회 2,359
10년 전 조회 2,323
10년 전 조회 2,555
10년 전 조회 2,193
10년 전 조회 1,799
10년 전 조회 2,547
10년 전 조회 2,989
10년 전 조회 2,540