<style type="text/css">
#wrap-loading { /*화면 전체를 어둡게 합니다.*/
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
/*display: none;*/
/*background: rgba(0,0,0,0.2);*/ /*not in ie */
/*filter: progid:DXImageTransform.Microsoft.Gradient(startColorstr='#20000000', endColorstr='#20000000');*/ /* ie */
}
.loading { /*로딩 이미지*/
position: fixed;
top: 50%;
left: 50%;
margin-left: -21px;
margin-top: -21px;
}
</style>
body 안에
<div id="wrap-loading" >
<img src="images/loading.gif" class="loading" style="width:50px;">
</div>
<script>
window.onload = function(){
$('#wrap-loading').hide();
}
</script>
'[ Web 관련 ] > jQuery' 카테고리의 다른 글
특정 div등으로 스크롤 하기 (0) | 2019.07.16 |
---|---|
제이쿼리 - 클래스를 변경하거나 삭제 + data속성 삭제 (0) | 2019.06.25 |
chart.js 관련 (0) | 2019.05.29 |
class 바꿀때, style 교체 (0) | 2019.01.16 |
셀렉트박스 선택값, 텍스트 가져오기 (0) | 2018.12.26 |