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,267
10년 전 조회 2,158
10년 전 조회 1,857
10년 전 조회 2,189
10년 전 조회 1,980
10년 전 조회 1,759
10년 전 조회 2,354
10년 전 조회 1,779
10년 전 조회 2,077
10년 전 조회 1,774
10년 전 조회 1,600
10년 전 조회 3,013
10년 전 조회 2,136
10년 전 조회 2,221
10년 전 조회 1,998
10년 전 조회 2,269
10년 전 조회 2,132
10년 전 조회 1,886
10년 전 조회 2,322
10년 전 조회 2,781
10년 전 조회 2,199
10년 전 조회 2,095
10년 전 조회 2,082
10년 전 조회 2,034
10년 전 조회 2,680
10년 전 조회 2,608
10년 전 조회 1,657
10년 전 조회 2,060
10년 전 조회 1,650
10년 전 조회 1,995
10년 전 조회 3,454
10년 전 조회 2,026
10년 전 조회 4,097
10년 전 조회 2,709
10년 전 조회 2,339
10년 전 조회 1,694
10년 전 조회 2,054
10년 전 조회 2,358
10년 전 조회 2,776
10년 전 조회 4,092
10년 전 조회 2,900
10년 전 조회 3,040
10년 전 조회 3,509
10년 전 조회 5,153
10년 전 조회 2,730
10년 전 조회 1,896
10년 전 조회 3,603
10년 전 조회 2,043
10년 전 조회 2,288
10년 전 조회 3,038
10년 전 조회 1,926
10년 전 조회 1,937
10년 전 조회 4,234
10년 전 조회 1,952
10년 전 조회 1,840
10년 전 조회 1,846
10년 전 조회 1,751
10년 전 조회 2,262
10년 전 조회 1,979
10년 전 조회 1,865
10년 전 조회 1,993
10년 전 조회 2,518
10년 전 조회 3,351
10년 전 조회 2,400
10년 전 조회 2,659
10년 전 조회 3,190
10년 전 조회 2,570
10년 전 조회 2,369
10년 전 조회 2,313
10년 전 조회 5,176
10년 전 조회 1,977
10년 전 조회 2,308
10년 전 조회 2,842
10년 전 조회 2,308
10년 전 조회 3,984
10년 전 조회 2,226
10년 전 조회 2,193
10년 전 조회 2,265
10년 전 조회 5,831
10년 전 조회 2,138
10년 전 조회 3,695
10년 전 조회 2,985
10년 전 조회 3,617
10년 전 조회 3,244
10년 전 조회 3,929
10년 전 조회 2,104
10년 전 조회 2,396
10년 전 조회 4,191
10년 전 조회 2,562
10년 전 조회 1,955
10년 전 조회 2,940
10년 전 조회 2,677
10년 전 조회 2,419
10년 전 조회 2,396
10년 전 조회 2,609
10년 전 조회 2,249
10년 전 조회 1,850
10년 전 조회 2,602
10년 전 조회 3,051
10년 전 조회 2,601