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년 전 조회 1,989
10년 전 조회 1,922
10년 전 조회 1,597
10년 전 조회 1,952
10년 전 조회 1,747
10년 전 조회 1,483
10년 전 조회 2,094
10년 전 조회 1,542
10년 전 조회 1,828
10년 전 조회 1,498
10년 전 조회 1,348
10년 전 조회 2,763
10년 전 조회 1,874
10년 전 조회 1,993
10년 전 조회 1,725
10년 전 조회 2,012
10년 전 조회 1,868
10년 전 조회 1,632
10년 전 조회 2,068
10년 전 조회 2,531
10년 전 조회 1,930
10년 전 조회 1,816
10년 전 조회 1,813
10년 전 조회 1,765
10년 전 조회 2,418
10년 전 조회 2,334
10년 전 조회 1,402
10년 전 조회 1,800
10년 전 조회 1,370
10년 전 조회 1,727
10년 전 조회 3,182
10년 전 조회 1,745
10년 전 조회 3,803
10년 전 조회 2,432
10년 전 조회 2,046
10년 전 조회 1,412
10년 전 조회 1,760
10년 전 조회 2,080
10년 전 조회 2,496
10년 전 조회 3,825
10년 전 조회 2,631
10년 전 조회 2,773
10년 전 조회 3,231
10년 전 조회 4,860
10년 전 조회 2,478
10년 전 조회 1,621
10년 전 조회 3,328
10년 전 조회 1,729
10년 전 조회 1,982
10년 전 조회 2,769
10년 전 조회 1,629
10년 전 조회 1,657
10년 전 조회 3,977
10년 전 조회 1,695
10년 전 조회 1,565
10년 전 조회 1,560
10년 전 조회 1,439
10년 전 조회 1,984
10년 전 조회 1,704
10년 전 조회 1,592
10년 전 조회 1,724
10년 전 조회 2,221
10년 전 조회 3,096
10년 전 조회 2,108
10년 전 조회 2,375
10년 전 조회 2,918
10년 전 조회 2,290
10년 전 조회 2,108
10년 전 조회 2,030
10년 전 조회 4,922
10년 전 조회 1,705
10년 전 조회 2,022
10년 전 조회 2,585
10년 전 조회 2,034
10년 전 조회 3,748
10년 전 조회 1,982
10년 전 조회 1,917
10년 전 조회 2,004
10년 전 조회 5,563
10년 전 조회 1,867
10년 전 조회 3,439
10년 전 조회 2,700
10년 전 조회 3,364
10년 전 조회 2,947
10년 전 조회 3,672
10년 전 조회 1,820
10년 전 조회 2,115
10년 전 조회 3,923
10년 전 조회 2,281
10년 전 조회 1,665
10년 전 조회 2,664
10년 전 조회 2,409
10년 전 조회 2,145
10년 전 조회 2,085
10년 전 조회 2,314
10년 전 조회 1,954
10년 전 조회 1,595
10년 전 조회 2,333
10년 전 조회 2,809
10년 전 조회 2,360