전체 화면에loading 디스플레이를 불러오는 해결 방법

3614 단어 load

step1: 웹페이지에div를 추가하여 현실loading에 사용할 수 있습니다.

1 <div id="loading">
2    <!--     loading          -->
3 </div>

step2: 이 loading div 스타일 주세요.

 1 /*           ,    loading     */
 2 html,body{
 3        height:100%;
 4        width:100%;
 5  }
 6 body{
 7        overflow: hidden;
 8 }
 9  #loading{           
10        width:100%;
11        height:100%;
12        color:#9f9f9f;
13        top:0px;
14        left:0px;
15        position:absolute;
16        z-index: 1999;/*        */
17        text-align: center;
18 }
19 /*           ,    display:none*/
20 .wrapper{
21        display: none;
22 }

step3: 여기는 jQuery 코드입니다.
1 /*          */
2 $(window).load(function(){
3      $('#loading').fadeOut();  
4      $('body').css('overflow','scroll');
5      $('.wrapper').fadeIn(); 
6 });

좋은 웹페이지 즐겨찾기