Jquery/Ajax loader's time to depend on page's loading time

1.4k Views Asked by At

Situation:
I am looking for a jquery/ajax loader and found this thread helpful.
Now I am using this fiddle as my loader.
Everything works fine but I only have one concern.
Below the js code, 'responseTime' is fixed to 2.5 secs.

$.mockjax({ url: "/mockjax", responseTime: 2500 });

So if my page loads more than 5 secs, the loader only runs at 2.5 secs.

Question:
How am I going to depend the loader's time to my page's unpredictable loading time?

Your help is very much appreciated. Thanks!

2

There are 2 best solutions below

0
On BEST ANSWER


I found what I'm looking for from this site.

Below is the code I use.

$(document).ready(function(){
    $("#spinner").bind("ajaxSend", function() {
        $(this).show();
    }).bind("ajaxStop", function() {
        $(this).hide();
    }).bind("ajaxError", function() {
        $(this).hide();
    });
 
    $('#button-upload').click(function() {
        $('#spinner').show();
    });
 });
.spinner {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -50px;
    margin-top: -50px;
    text-align:center;
    z-index:1234;
    overflow: auto;
    width: 100px;
    height: 102px; 
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>

<div id="spinner" class="spinner" style="display:none;">
    <img id="img-spinner" src="http://sampsonresume.com/labs/pIkfp.gif" alt="Loading"/>
</div>


<input type = "submit" value = "Upload" id="button-upload" />

The loader is indefinite in this snippet, but it runs perfectly on my site.
Thanks guys for the help anyway =)

2
On

You can show loader gif until window loads completely by

$(window).load(function(){

}

And do it like:

$(window).load(function(){
    $('#cover').fadeOut(1000); 
});
#cover {
    background: url("http://www.aveva.com/Images/ajax-loader.gif") no-repeat scroll center center #FFF;
    position: absolute;
    height: 100%;
    width: 100%;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<div id="cover"></div>
<img src="https://i.ytimg.com/vi/lklDJ5VRQao/maxresdefault.jpg" />

It will start with showing gif and will be faded out once content gets loaded completely.