- html 파일 부분
<div id="loading" class="loading"></div>
$(document).ready(function() {
$('#loading').hide();
$('#myform').submit(function(){
$("#loading").css({
"top": (($(window).height()-$("#loading").outerHeight())/2+$(window).scrollTop())+"px",
"left": (($(window).width()-$("#loading").outerWidth())/2+$(window).scrollLeft())+"px"
});
$('#loading').show();
return true;
});
});
- style 부분
.loading{
position: absolute;
display: block;
background: url("/images/loading.png") no-repeat;
background-size: 100%;
width: 25px;
height: 25px;
left: 50%;
margin-left: -17.5px;
bottom: -22px;
}
이렇게까지 친절하게 해 줄 필욘 없지만...때때로 요청하기도 한다.
모바일도 된다
'javascript&jquery' 카테고리의 다른 글
html, css만으로 이미지에 레이어로 워터마크 비스듬히 쓰기 (0) | 2021.07.27 |
---|---|
jquery json으로 받은 여러개의 값을 반복문(each)를 이용해 출력하기 (0) | 2021.05.25 |
체크박스 일괄선택, 하위 객체 동시 선택 by jquery (0) | 2021.02.10 |
변수, 파라미터가 배열일때 json형태로 값을 확인하는 법. (0) | 2021.01.13 |
checkbox 체크 수 제한하기 (0) | 2019.02.26 |