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,304
10년 전 조회 2,211
10년 전 조회 1,897
10년 전 조회 2,236
10년 전 조회 2,028
10년 전 조회 1,807
10년 전 조회 2,397
10년 전 조회 1,827
10년 전 조회 2,114
10년 전 조회 1,816
10년 전 조회 1,645
10년 전 조회 3,055
10년 전 조회 2,180
10년 전 조회 2,261
10년 전 조회 2,035
10년 전 조회 2,303
10년 전 조회 2,186
10년 전 조회 1,930
10년 전 조회 2,353
10년 전 조회 2,829
10년 전 조회 2,244
10년 전 조회 2,132
10년 전 조회 2,137
10년 전 조회 2,073
10년 전 조회 2,722
10년 전 조회 2,648
10년 전 조회 1,702
10년 전 조회 2,102
10년 전 조회 1,701
10년 전 조회 2,040
10년 전 조회 3,493
10년 전 조회 2,077
10년 전 조회 4,155
10년 전 조회 2,756
10년 전 조회 2,384
10년 전 조회 1,735
10년 전 조회 2,100
10년 전 조회 2,393
10년 전 조회 2,808
10년 전 조회 4,141
10년 전 조회 2,937
10년 전 조회 3,089
10년 전 조회 3,564
10년 전 조회 5,198
10년 전 조회 2,771
10년 전 조회 1,938
10년 전 조회 3,645
10년 전 조회 2,088
10년 전 조회 2,335
10년 전 조회 3,085
10년 전 조회 1,975
10년 전 조회 1,980
10년 전 조회 4,273
10년 전 조회 2,004
10년 전 조회 1,890
10년 전 조회 1,898
10년 전 조회 1,799
10년 전 조회 2,311
10년 전 조회 2,033
10년 전 조회 1,914
10년 전 조회 2,046
10년 전 조회 2,572
10년 전 조회 3,392
10년 전 조회 2,456
10년 전 조회 2,722
10년 전 조회 3,238
10년 전 조회 2,620
10년 전 조회 2,409
10년 전 조회 2,356
10년 전 조회 5,228
10년 전 조회 2,019
10년 전 조회 2,352
10년 전 조회 2,890
10년 전 조회 2,353
10년 전 조회 4,029
10년 전 조회 2,268
10년 전 조회 2,221
10년 전 조회 2,311
10년 전 조회 5,873
10년 전 조회 2,185
10년 전 조회 3,751
10년 전 조회 3,037
10년 전 조회 3,673
10년 전 조회 3,305
10년 전 조회 3,986
10년 전 조회 2,157
10년 전 조회 2,431
10년 전 조회 4,246
10년 전 조회 2,612
10년 전 조회 2,001
10년 전 조회 2,990
10년 전 조회 2,730
10년 전 조회 2,467
10년 전 조회 2,441
10년 전 조회 2,648
10년 전 조회 2,302
10년 전 조회 1,892
10년 전 조회 2,648
10년 전 조회 3,100
10년 전 조회 2,656