是否有可能适应以下jQuery?

时间:2015-07-16 10:45:32

标签: javascript php jquery xml xmlhttprequest

我最近在我的网站上添加了一个响应加载图标,同时页面加载。除了我想在执行JavaScript函数时显示图像,因为如果用户在第一次xmlhttp请求完成之前第二次运行脚本,它将无法正常工作。

$(window).load(function() {
  $(".se-pre-con").fadeOut("slow");
});
.no-js #loader {
  display: none;
}
.js #loader {
  display: block;
  position: absolute;
  left: 100px;
  top: 0;
}
.se-pre-con {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url(images/loader-64x/Preloader_2.gif) center no-repeat #fff;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<div class="se-pre-con"></div>

有没有办法修改jQuery以便更好地为我工作?或者你们有一个完全不同的解决方案,仍然可以解决问题吗?

5 个答案:

答案 0 :(得分:2)

如果您将此用于AJAX。使用以下方式显示/隐藏装载程序。

$(".se-pre-con").show(); // before initiate ajax call
$.ajax({
   url: "test.html",
   context: document.body
}).done(function() {
   $(".se-pre-con").hide();
});

答案 1 :(得分:1)

存在一些像https://github.com/jgerigmeyer/jquery-loading-overlay这样的光插件(2kb),可以像这样使用:

开始:

$('#target').loadingOverlay();

并停止:

$('#target').loadingOverlay('remove');

只需将其放入您的功能中并且不要忘记执行同步通话,否则它将毫无意义:)

答案 2 :(得分:1)

如果我清楚地了解您的要求,那么我认为您希望在xmlhttp请求之前添加加载图像,并且当请求工作完成时,它就会消失。

首先在html文件中添加以下代码

<div id="loadingDiv">
    <div id="popupContact">

    </div>
</div>

你的css中的以下行 并且不要忘记在图像文件夹中添加您想要加载图像的bg.png图像

#loadingDiv {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
    position: fixed;
    background: url(../images/bg.png) repeat;
    overflow: auto;
    z-index: 100000;
}

div#popupContact {
    position: fixed;
    left: 48%;
    top: 40%;
    background: url(../images/loading.gif) no-repeat;
    width: 100%;
    height: 100%;
    float: left;
}

然后在你的js文件中添加以下两个方法

//it will show process image
function showProcessImg(){
    $('#loadingDiv').css('display','block');
}
//it will hide process image
function hideProcessImg(){
    $('#loadingDiv').css('display','none');
}

在你的httprequest之前调用showProcessImg()并在你的成功或错误回调中调用hideProcessImg(),如下所示

showProcessImg();

    $.ajax({
        url:'',
        method:'POST',
        success:function(response){
            hideProcessImg();
        },
        error:function(){
            //disable loading image
            hideProcessImg();
            alert('Error occur here');
        }
    });

答案 3 :(得分:1)

只需创建一个叠加层div,然后切换其display属性。

heres一个小提琴。注意不需要图像,但是你需要一个支持css3的浏览器。

#waiting-container {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1130;
  display: hide;
}

#waiting-container #waiting-spinner {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1132;
}

#waiting-spinner .spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 40px;
  width: 40px;
  margin: 0 auto;
  -webkit-animation: rotation .6s infinite linear;
  -moz-animation: rotation .6s infinite linear;
  -o-animation: rotation .6s infinite linear;
  animation: rotation .6s infinite linear;
  border-left: 6px solid rgba(0, 174, 239, .15);
  border-right: 6px solid rgba(0, 174, 239, .15);
  border-bottom: 6px solid rgba(0, 174, 239, .15);
  border-top: 6px solid rgba(0, 174, 239, .8);
  border-radius: 100%;
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@-moz-keyframes rotation {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(359deg);
  }
}
@-o-keyframes rotation {
  from {
    -o-transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(359deg);
  }
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

#waiting-container #waiting-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: black;
  opacity: .5;
  z-index: 1131;
}

答案 4 :(得分:1)

这里给出的所有答案都很好,但如果您希望所有AJAX请求默认使用加载程序映像,则可以尝试这样做:

<body>

</body>

<div class="modalLoader"></div>

<script>
$body = $("body");
 $(document).on({
    ajaxStart: function() { $body.addClass("loading");},
     ajaxStop: function() { $body.removeClass("loading");}    
}); 

</script>

.modalLoader {
    display:    none;
    position:   fixed;
    z-index:    1500;
    top:        0;
    left:       0;
    height:     100%;
    width:      100%;
    background: rgba( 255, 255, 255, .8 ) 
                url('../img/loaders/loader.gif') 
                50% 50% 
                no-repeat;
}

body.loading {
    overflow: hidden;   
}

body.loading .modalLoader {
    display: block;
}

由于