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,204
10년 전 조회 2,115
10년 전 조회 1,807
10년 전 조회 2,142
10년 전 조회 1,928
10년 전 조회 1,701
10년 전 조회 2,305
10년 전 조회 1,738
10년 전 조회 2,037
10년 전 조회 1,710
10년 전 조회 1,557
10년 전 조회 2,975
10년 전 조회 2,089
10년 전 조회 2,188
10년 전 조회 1,944
10년 전 조회 2,228
10년 전 조회 2,083
10년 전 조회 1,844
10년 전 조회 2,286
10년 전 조회 2,733
10년 전 조회 2,160
10년 전 조회 2,039
10년 전 조회 2,021
10년 전 조회 1,987
10년 전 조회 2,629
10년 전 조회 2,565
10년 전 조회 1,613
10년 전 조회 2,018
10년 전 조회 1,591
10년 전 조회 1,945
10년 전 조회 3,410
10년 전 조회 1,980
10년 전 조회 4,035
10년 전 조회 2,665
10년 전 조회 2,279
10년 전 조회 1,643
10년 전 조회 2,012
10년 전 조회 2,299
10년 전 조회 2,728
10년 전 조회 4,045
10년 전 조회 2,849
10년 전 조회 3,001
10년 전 조회 3,455
10년 전 조회 5,099
10년 전 조회 2,675
10년 전 조회 1,847
10년 전 조회 3,557
10년 전 조회 1,992
10년 전 조회 2,245
10년 전 조회 2,983
10년 전 조회 1,887
10년 전 조회 1,885
10년 전 조회 4,190
10년 전 조회 1,909
10년 전 조회 1,804
10년 전 조회 1,809
10년 전 조회 1,703
10년 전 조회 2,218
10년 전 조회 1,942
10년 전 조회 1,820
10년 전 조회 1,960
10년 전 조회 2,467
10년 전 조회 3,303
10년 전 조회 2,346
10년 전 조회 2,596
10년 전 조회 3,137
10년 전 조회 2,518
10년 전 조회 2,339
10년 전 조회 2,250
10년 전 조회 5,141
10년 전 조회 1,933
10년 전 조회 2,254
10년 전 조회 2,804
10년 전 조회 2,255
10년 전 조회 3,934
10년 전 조회 2,189
10년 전 조회 2,141
10년 전 조회 2,222
10년 전 조회 5,780
10년 전 조회 2,086
10년 전 조회 3,647
10년 전 조회 2,941
10년 전 조회 3,563
10년 전 조회 3,189
10년 전 조회 3,885
10년 전 조회 2,052
10년 전 조회 2,361
10년 전 조회 4,143
10년 전 조회 2,514
10년 전 조회 1,908
10년 전 조회 2,893
10년 전 조회 2,634
10년 전 조회 2,372
10년 전 조회 2,347
10년 전 조회 2,576
10년 전 조회 2,214
10년 전 조회 1,810
10년 전 조회 2,560
10년 전 조회 3,001
10년 전 조회 2,550