html 将预加载器添加到Divi网站

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 将预加载器添加到Divi网站相关的知识,希望对你有一定的参考价值。

/* PRELOADER */ 
.preloader {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #fefefe;
z-index: 100000;
height: 100%;
width: 100%;
overflow: hidden !important;
}
.preloader .status {
width: 100px;
height: 100px;
position: absolute;
left: 50%;
top: 50%;
background-image: url(assets/img/loading.gif);
background-repeat: no-repeat;
background-position: center;
-webkit-background-size: cover;
background-size: cover;
margin: -50px 0 0 -50px;
}
<script type="text/javascript">
 // makes sure the whole site is loaded
    jQuery(window).load(function () {
        "use strict";
        // will first fade out the loading animation
 if(  jQuery( '.et-bfb' ).length <= 0 && jQuery( '.et-fb' ).length <= 0  ){ 
 jQuery(".status").fadeOut();
 // will fade out the whole DIV that covers the website.
 jQuery(".preloader").delay(1000).fadeOut("slow");
 }else{
 jQuery(".preloader").css('display','none');
 }
    }); 
</script> 
<div class="preloader">
<div class="status"></div>
</div>

以上是关于html 将预加载器添加到Divi网站的主要内容,如果未能解决你的问题,请参考以下文章

如何将预建库添加到 VC++ 解决方案?

如何将预单元测试步骤添加到我的*** Makefile.am?

如果 Woocommerce 产品价格为零,则显示联系按钮,否则显示添加到购物车按钮

无法将javascript添加到wordpress中的divi页脚

将预编译的二进制文件捆绑到电子应用程序中

我如何将预发布版本推广到生产环境,并嵌入新版本,而无需重新构建?