Detailed explanation of web page loading progress bar (recommended)

Detailed explanation of web page loading progress bar (recommended)

(When a web page is loading, sometimes there is too much content and it keeps loading and waiting. At this time, the web page displays white and does not show anything, which gives the user a very bad experience. Therefore, generally before the web page is loaded successfully, it will be displayed to the user in the form of a progress bar. Let the user see the animation and know that the web page is loading)

The common methods are as follows:

1. Timer progress bar (fake)

<script type="text/javascript"> 
    $(function(){ 
        var loading='<div class="loading"><div class="pic"></div></div>'; 
        $("body").append(loading); 
        setInterval(function(){ 
            $(".loading").fadeOut(); 
        },3000); 
    }); 
</script>

2. Really obtain the content and realize the loading progress bar

To load the progress bar according to the real content, two knowledge points are introduced below:

document.onreadystatechange Event when the page loading state changes
document.readyState returns the current document status
1. uninitialized - not yet loaded
2. loading
3. interactive - loaded, the document and the user can start to interact
4. complete - loading completed

2.1. The above timer code can be modified to:

document.onreadystatechange=function(){ 
         if(document.readyState=="complete"){ 
                  $(".loading").fadeOut(); 
         } 
}

2.2. Turn the progress bar into a small CSS animation for display

Recommended website: https://preloaders.net/ This website has various small animations indicating loading

http://autoprefixer.github.io/ Add prefixes to CSS online

https://loading.io/ Progress bar animation

2.3: Position the progress of the head, as shown below:

Note: This implementation does not actually display the loading progress, but uses the principle of executing code from top to bottom to change the width of the line at different locations in the code, and makes the width 100% at the end of the page.

As shown below:

2.4 Get the progress bar of loading data in real time

Create an image object: image object name = new Image();
Use the onload event. Note: The src attribute must be written after onload, otherwise the program will fail in IE.

The above is the full content of this article. I hope that the content of this article can bring some help to your study or work. If you have any questions, you can leave a message to communicate. Thank you for your support of 123WORDPRESS.COM!

<<:  JavaScript web page entry-level development detailed explanation

>>:  A brief analysis of MySQL cardinality statistics

Recommend

Detailed steps for IDEA to integrate docker to achieve remote deployment

1. Enable remote access to the docker server Log ...

How to add double quotes in HTML title

<a href="https://www.jb51.net/" titl...

Examples of 4 methods for inserting large amounts of data in MySQL

Preface This article mainly introduces 4 methods ...

A brief analysis of the responsiveness principle and differences of Vue2.0/3.0

Preface Since vue3.0 was officially launched, man...

Two ways to open and close the mysql service

Method 1: Use cmd command First, open our DOS win...

How to count down the date using bash

Need to know how many days there are before an im...

Common browser compatibility issues (summary)

Browser compatibility is nothing more than style ...

React implements a general skeleton screen component example

Table of contents What is a skeleton screen? Demo...

Detailed explanation of Angular component life cycle (I)

Table of contents Overview 1. Hook calling order ...

How to build a standardized vmware image for kubernetes under rancher

When learning kubernetes, we need to practice in ...

How to add Nginx to system services in CentOS7

Introduction After compiling, installing and solv...

How to quickly insert 10 million records into MySQL

I heard that there is an interview question: How ...

In-depth explanation of nginx location priority

location expression type ~ indicates to perform a...

Various methods to implement the prompt function of text box in html

You can use the attribute in HTML5 <input="...