반응형

이미지 만들기

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;
}
반응형

WRITTEN BY
데르벨준

,