热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

js进度条实例

jsp页面代码:test.jsp<%@pagelanguage"java"contentType"texthtml;charsetUTF-8&qu
 

jsp页面代码:test.jsp

<%@ page language="java" cOntentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%
    String path = request.getContextPath();
    String basePath = request.getScheme() + "://"
            + request.getServerName() + ":" + request.getServerPort()
            + path + "/";
%>











 

js代码:loading.js

//频率
var frequency = 50;
//步长  
var step = 3;
//背景颜色
var loadingBgcolor = "#FFFFEC";
//宽度
var loadingWidth = 354;

/*
*参数说明:
*content:显示内容,可以为空;
*imageURL:将引用JS文件的路径设置即可;
*left:进度条显示位置left
*top:进度条显示位置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 += "";
   strLoading += "";
 }
    strLoading += "";
   strLoading += "";
  strLoading += "
";
     strLoading += "" + content + "";
    strLoading += "
";
     strLoading += "\"\"";
    strLoading += "
";
 strLoading += "
";

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


推荐阅读
author-avatar
cut1089289
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有