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



JS progress bar effect implementation code organization_javascript skills
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 = "
";
strLoading = "if(content != "")
";
strLoading = "
"; strLoading = "
"; strLoading = "" content ""; strLoading = "< ;/td>"; strLoading = " |
"; strLoading = " strLoading = " | ";
strLoading = "
document.getElementById("loading_div").innerHTML = strLoading;
}
Use page:
Copy Code The code is as follows:
< html>