I'm

Developer, Designer, Photographer

GET IN TOUCH

  • Buk-gu, Busan, Republic of Korea
  • ungdoli0916@naver.com
  • Kakao ID : Ungdoli
Your message has been sent. Thank you!
(즐거웅코드) 제이쿼리 화면 로딩 시 로딩 이미지 띄우기

· 즐거'웅' 코드 (Source)/HTML & CSS & JAVASCRIPT
2021. 6. 7. 17:16

반응형

[즐거'웅'코드] 목차

  1. 리소스
  2. 예제 소스
리소스
images.zip
51.8 kB
예제 소스
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
34
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
 
<style>
    #loading {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        position: fixed;
        display: block;
        opacity: 0.5;
        background: #ffffff;
        z-index: 100;
        text-align: center;
    }
 
    #loading img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 101;
    }
</style>
 
<div id="loading">
    <img src="images/loading.gif" alt="loading">
</div>
 
<script>
    $(window).load(function () {
        $('#loading').hide();
    });
</script>
반응형