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,800
10년 전 조회 1,728
10년 전 조회 1,407
10년 전 조회 1,737
10년 전 조회 1,539
10년 전 조회 1,289
10년 전 조회 1,894
10년 전 조회 1,332
10년 전 조회 1,646
10년 전 조회 1,289
10년 전 조회 1,158
10년 전 조회 2,555
10년 전 조회 1,653
10년 전 조회 1,718
10년 전 조회 1,492
10년 전 조회 1,755
10년 전 조회 1,602
10년 전 조회 1,396
10년 전 조회 1,823
10년 전 조회 2,266
10년 전 조회 1,659
10년 전 조회 1,545
10년 전 조회 1,566
10년 전 조회 1,522
10년 전 조회 2,183
10년 전 조회 2,086
10년 전 조회 1,161
10년 전 조회 1,562
10년 전 조회 1,119
10년 전 조회 1,481
10년 전 조회 2,973
10년 전 조회 1,511
10년 전 조회 3,552
10년 전 조회 2,191
10년 전 조회 1,809
10년 전 조회 1,178
10년 전 조회 1,529
10년 전 조회 1,821
10년 전 조회 2,254
10년 전 조회 3,562
10년 전 조회 2,383
10년 전 조회 2,513
10년 전 조회 2,986
10년 전 조회 4,627
10년 전 조회 2,210
10년 전 조회 1,381
10년 전 조회 3,137
10년 전 조회 1,501
10년 전 조회 1,733
10년 전 조회 2,520
10년 전 조회 1,390
10년 전 조회 1,423
10년 전 조회 3,718
10년 전 조회 1,428
10년 전 조회 1,297
10년 전 조회 1,281
10년 전 조회 1,190
10년 전 조회 1,720
10년 전 조회 1,463
10년 전 조회 1,339
10년 전 조회 1,455
10년 전 조회 1,938
10년 전 조회 2,914
10년 전 조회 1,865
10년 전 조회 2,098
10년 전 조회 2,666
10년 전 조회 2,039
10년 전 조회 1,848
10년 전 조회 1,785
10년 전 조회 4,662
10년 전 조회 1,433
10년 전 조회 1,774
10년 전 조회 2,311
10년 전 조회 1,774
10년 전 조회 3,504
10년 전 조회 1,737
10년 전 조회 1,629
10년 전 조회 1,735
10년 전 조회 5,293
10년 전 조회 1,596
10년 전 조회 3,164
10년 전 조회 2,436
10년 전 조회 3,113
10년 전 조회 2,697
10년 전 조회 3,417
10년 전 조회 1,572
10년 전 조회 1,854
10년 전 조회 3,666
10년 전 조회 2,004
10년 전 조회 1,403
10년 전 조회 2,406
10년 전 조회 2,151
10년 전 조회 1,875
10년 전 조회 1,836
10년 전 조회 2,046
10년 전 조회 1,695
10년 전 조회 1,334
10년 전 조회 2,111
10년 전 조회 2,571
10년 전 조회 2,108