프론트엔드/HTML, CSS
CSS 로딩 이미지 설정
데르벨준
2019. 6. 20. 16:36
반응형
이미지 만들기
HTML
<div id = "divLoadingWrapper" class = "loadingWrapper">
<img class = "loadingImage" src="/resource/images/myLoading.gif">
</div>
CSS
.loadingWrapper {
z-index: 99;
display: none;
top: 0px;
left: 0px;
height: 100%;
width: 100%;
position: fixed;
opacity: 0.7;
background-color: #fff;
text-align: center;
}
.loadingImage {
position : absolute;
top: 50%;
left: 50%;
z-index: 100;
}
반응형