CSS预加载器淡出

时间:2018-06-28 15:58:25

标签: jquery css fadeout

我希望我的预加载器可以平滑淡出,我正在使用波纹管代码,但是它不起作用...

CSS

.body{
     width:100%;
     height:1000px;
     overflow:hidden;
    }
    #loader{
         width:100px;
         height:100px;

         border:solid 5px blue;
         border-top:solid 5px #F69;
         border-bottom:solid 5px #F69;
         border-radius:100%;

         position:absolute;
         top:0;
         left:0;
         right:0;
         bottom:0;
         margin:auto;

         -webkit-animation: spin 2s linear infinite;
         animation: spin 2s linear infinite;

        }
    @keyframes spin{
            from{ transform:rotate(0deg);  width:100px;
            height:100px;}
            to{ transform:rotate(360deg); width:100px;
            height:100px;}
        }

代码

<body onload="myFunction()" >
   <div id="loader" style="z-index:999;">
   </div>
 </body>

脚本

overflow: hidden;

1 个答案:

答案 0 :(得分:0)

在您的脚本中

$("bloader").fadeOut(2000);

应该是

$("#loader").fadeOut(2000);