전체 글 (73) 썸네일형 리스트형 모더나이저 출처: https://webclub.tistory.com/256 [Web Club] 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 $(document).ready(function(){ if (!(window.devicePixelRatio > 1)) { // supported console.log("pc"); $("#devicePixelRatio").show(); } else { $("#devicePixelRatio").hide(); } }); #devicePixelRatio { background: white; width: 100%; height: 100%; position: fixed; d.. [css] 모든 버튼 비활성화 & 활성화 모든 버튼 비활성화 $('input, button, a').css("pointer-events", "none"); $('input, button, a').css("cursor", "default"); 모든 버튼 활성화 $('input, button, a').css("pointer-events", "auto"); $('input, button, a').css("cursor", "auto"); [css] div 안에 div 이미지 가운데 정렬 1234567891011121314151617181920212223242526272829303132333435363738 #loading { width: 100%; height: 100%; position: fixed; display: table; opacity: 0.7; background-color: #fff; z-index: 99; } #loding_inner { display: table-cell; text-align: center; vertical-align: middle;} #loading-image { display: inline-block; z-index: 100; width: 50%; } $(document).ready(function(){ $('#loading').show(); }); .. 이전 1 ··· 19 20 21 22 23 24 25 다음