Home Web Front-end JS Tutorial JS progress bar effect implementation code organization_javascript skills

JS progress bar effect implementation code organization_javascript skills

May 16, 2016 pm 06:06 PM
progress bar

The first method:
Loading.js

Copy code The code is as follows:

/ /Frequency
var frequency = 50;
//Step size
var step = 3;
//Background color
var loadingBgcolor = "#ffffff";
//Width
var loadingWidth = 354;

/*
*Parameter description:
*content: Display content, can be empty;
*imageURL: Just set the path of the referenced JS file ;
*left: progress bar display position left
*top: progress bar display position top
*/
function Loading(content, imageURL, left, top)
{
imageURL = imageURL "Loading.jpg";

LoadTable(content, imageURL, left, top);
showimage.style.display="";
window.setInterval("RefAct();" , frequency);
}

function RefAct()
{
imgAct.width = step;
if(imgAct.width > loadingWidth-4)
{
imgAct.width = 0;
}
}

function LoadTable(content, imageURL, left, top)
{
var strLoading;
strLoading = "" ;
strLoading = "";

document.getElementById("loading_div").innerHTML = strLoading;
}

Use page:
Copy Code The code is as follows:


< html>

Untitled Document











Second method:
JS implements the progress display function
Copy code The code is as follows:

progress.js class file:

$ = function (id) {
return document.getElementById(id);
}
//Convert text to JSON string
String.prototype.toJson = function () {
if (this == ) {
return null;
}
else {
try {
return eval(( this.replace(/rn/g, rn) ));
}
catch (err) {
}
}
};
//Character formatting method
String.prototype.format = function () {
var newStr = this;
var reg = null;
for (var i = 0; i < arguments.length; i ) {
reg = RegExp('{' (i) '}', 'gm');
newStr = newStr.replace(reg, arguments[i]);
}
return newStr;
} ;
//Progress bar class
function Progress(objId) {
//window.setInterval object
this.interval = null;
//Progress bar object ID
this. id = objId;
//The starting progress of the current progress is 0
this.progress = 0;
//The progress bar displays the DIV ID of the progress
this.progressId = inner this.id;
//Progress bar border ID
this.progressFrameId = frame this.id;
//Progress bar class parameter configuration
this.config = {
//Width
width: 150 ,
//Height
height: 20,
//Left margin
left: 0,
//Top margin
top: 0,
//Progress color
progressColor: red,
//Border color
borderColor: #ccc,
//Border width
borderHeight: 2,
//Hide the progress after an interval of N seconds after the progress is completed Bar 0 is hidden immediately
hiddenSplit:2000
};
}
//Progress bar class initialization method
Progress.prototype.init = function () {
//New progress Border DIV
var progressdiv = document.createElement(div);
//Border DIV style
var progressdiv_css_text = position:absolute;width:{0}px;height:{1}px;left: {2}px;top:{3}px;border:{4} {5}px solid;.format
(
this.config.width,
this.config.height,
this.config.left,
this.config.top,
this.config.borderColor,
this.config.borderHeight
);
//Reset progress to 0
this.progress = 0;
//Set the border ID
progressdiv.id = this.progressFrameId;
//Set the border style
progressdiv.style.cssText = progressdiv_css_text;
//Set Progress bar HTML
progressdiv.innerHTML = '

'.format(this.progressId, this.config.height, this.config.progressColor);
//Add to body
document .body.appendChild(progressdiv);
};
//Progress bar hidden function
Progress.prototype.hiddenProgress = function () {
document.body.removeChild(document.getElementById(this. progressFrameId));
window.clearInterval(this.interval);
}
//Function triggered when progress ends
Progress.prototype.complete = function () {
window.clearInterval (this.interval);
this.interval = window.setTimeout(this.id .hiddenProgress();,this.config.hiddenSplit);
if (this.completeCallBack) {
this.completeCallBack( );
}
}
//The callback function after each progress run
Progress.prototype.callback = function () {
var progressDiv = document.getElementById(this.progressId) ;
var progressFrameDiv = document.getElementById(this.progressFrameId);
progressDiv.innerHTML = (this.progress*100) %;
progressFrameDiv.title = Upload progress: (this.progress*100) % ;
progressDiv.style.width = (this.progress*100) %;
if (this.progress >= 1) {
this.complete();
progressDiv.innerHTML = file Upload successful!;
}
}
//Progress bar running function. Users need to implement
Progress.prototype.run = function () {
alert(Please implement this.id .run method to implement asynchronous progress request, and please call back this.id .callback method when posting back.);
window.clearInterval(this.interval);
}
//Start progress
Progress.prototype.start = function () {
this.init();
this. interval = window.setInterval(this.id .run(), 1000);
}

Image loading progress is displayed in real time
Copy the code The code is as follows:

<script> <br>var l=0; <br>var imgs; <br>var sum=0; <br>var imgs=new Array(); <br>function chk(){ <br>l--; <br>document.getElementById("aa").innerText="" ((sum-l)*100/sum) "%" <br>if (l==0){ <br>for (var i=0;i<sum;i ) <BR>document.body.innerHTML ="<img src='" imgs[i].src "'>" <br>} <br>} <br>if (document.images){ <br>imgs[0]=new Image() <br>imgs[1]=new Image() <br>imgs[2]=new Image() <br>imgs[3]=new Image() <br>imgs[4]=new Image() <br>imgs[5]=new Image() <br>imgs[6]=new Image() <br>imgs[7]=new Image() <br>imgs[0].src="/articleimg/2006/08/3859/01.jpg"; <br>imgs[1].src="/articleimg/2006/08/3859/02.jpg"; <br>imgs[2].src="/articleimg/2006/08/3859/03.jpg"; <br>imgs[3].src="/articleimg/2006/08/3859/04.jpg"; <br>imgs[4].src="/articleimg/2006/08/3859/05.jpg"; <br>imgs[5].src="/articleimg/2006/08/3859/06.jpg"; <br>imgs[6].src="/articleimg/2006/08/3859/07.jpg"; <br>imgs[7].src="/articleimg/2006/08/3859/08.jpg"; <br>} <br><br></script>

0%

<script> <br>sum=l=imgs.length; <br>for (var i=0;i<l;i ){ <br>imgs[i].onload=chk; <br>imgs[i].onerror=chk;//无论图片是否加载成功,都执行指定方法 <br>} <br></script>

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to implement page loading progress bar function in JavaScript? How to implement page loading progress bar function in JavaScript? Oct 27, 2023 am 08:57 AM

How does JavaScript implement the page loading progress bar function? In modern Internet applications, page loading speed is one of the key factors of user experience. To show users the loading process, many websites and applications use loading progress bars. JavaScript provides a simple and effective way to implement the page loading progress bar function. The specific implementation process is as follows: Create an HTML structure. First, create an HTML structure of a progress bar at a suitable location on the page. It is common to place the progress bar in

How to use Vue to implement progress bar effects How to use Vue to implement progress bar effects Sep 19, 2023 am 09:22 AM

How to use Vue to implement progress bar effects The progress bar is a common interface element that can be used to display the completion of a task or operation. In the Vue framework, we can implement special effects of the progress bar through some simple code. This article will introduce how to use Vue to implement progress bar effects and provide specific code examples. Create a Vue component First, we need to create a Vue component to implement the progress bar function. In Vue, components are reusable and can be used in multiple places. Create a file called Pro

How to set the color of a progress bar using HTML and CSS? How to set the color of a progress bar using HTML and CSS? Sep 19, 2023 pm 08:25 PM

In website development, progress bars are an important part of the website. The progress bar shows the progress of the process. With the help of it, users can see the status of the work being done on the website, including load times, file uploads, file downloads, and other similar tasks. By default, it is gray. However, to make progress bars stand out and be visually appealing, you can use HTML and CSS to change their color. What is a progress bar? A progress bar is used to show the progress of a task. It is a graphical user interface element. It basically consists of a horizontal bar that gradually fills in as the task progresses, accompanied by a percentage value or other completion indicator. Progress bars are used in web applications to provide users with information about completing a process such as file upload, file download, or software installation.

How to create a progress bar using HTML and CSS How to create a progress bar using HTML and CSS Sep 05, 2023 am 09:09 AM

Overview Progress bars are the main component of any web application. Progress indicates the completion of a project or task. In this module, we will build a progress bar using HTML and style it with CSS. We will also provide progress animation for the progress bar. In this task, we will animate the progress bar using @keyframes. Use animation style properties such as animation duration, name, timing, etc. Algorithm Step 1 - Create HTML boilerplate in a text editor. Step 2 - Create parent div container and define class name as barContainer. Step 3 - Now create another child of the current parent div and define the class name. Step 4 - Create a child that inherits in progress and will be animated

How to use Vue and Element-UI to implement progress bar and loading animation effects How to use Vue and Element-UI to implement progress bar and loading animation effects Jul 21, 2023 pm 08:54 PM

How to use Vue and Element-UI to implement progress bar and loading animation effects. Vue.js is a lightweight front-end framework, and Element-UI is a UI component library based on Vue.js, which provides a rich set of components and interactions. The effect can help us quickly develop a beautiful front-end interface. This article will introduce how to use Vue and Element-UI to implement progress bar and loading animation effects. 1. Install and introduce Element-UI first,

Vue component development: implementation method of progress bar component Vue component development: implementation method of progress bar component Nov 24, 2023 am 08:56 AM

Vue component development: Progress bar component implementation method Preface: In Web development, the progress bar is a common UI component, often used to display the progress of operations in scenarios such as data requests, file uploads, and form submissions. In Vue.js, we can easily implement a progress bar component by customizing components. This article will introduce an implementation method and provide specific code examples. I hope it will be helpful to Vue.js beginners. Component structure and style First, we need to define the basic structure and style of the progress bar component.

Create a progress bar using Javascript Create a progress bar using Javascript Sep 04, 2023 pm 10:53 PM

The progress bar is one of the latest components added to the library of excellent UI widgets and interactive helpers built on jQuery. It was introduced in the latest version of the library, 1.7 at the time of writing. The progress bar is currently only deterministic, which means that when we update it, we have to tell it explicitly what its value is, and we have to know in advance when the process it's measuring is complete. This widget is currently not the best choice for processes that require an indeterminate amount of time to complete. This is a very simple widget with a small API that exposes a limited number of properties and methods, but it is still very effective and perfect for providing visual feedback to visitors about the percentage remaining before the process is completed. To get started we need jQue

PHP development: How to implement article reading progress bar and sharing function PHP development: How to implement article reading progress bar and sharing function Sep 22, 2023 am 08:06 AM

PHP development: How to implement article reading progress bar and sharing function Introduction: Article reading progress bar and sharing function are important functions that provide users with a better reading experience and facilitate the sharing of content. In PHP development, we can achieve these two functions through some technical means. This article will introduce you to the specific implementation method and give corresponding code examples. 1. Implementation of the article reading progress bar The key to implementing the article reading progress bar is to obtain the current user's reading progress (that is, the height of the currently scrolled document), and then convert it into a value relative to the entire article.

See all articles