设为首页收藏本站

嘻皮客娱乐学习网

 找回密码
 中文注册
搜索
打印 上一主题 下一主题
开启左侧

[网页制作] 简单的变色进度条效果

[复制链接]
跳转到指定楼层
楼主
发表于 2014-10-29 16:36:09 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
简单的变色进度条效果

                                                                                               
                    将下面代码复制到记事本中 保存为test.html 看效果
<head>
<script language="java script">
var i=1;
window.setInterval("chal()",50);
function chal(){
     tfl.style.width=i;
tfl.value=i+"%";
losd.style.width=i;
losd.innerHTML=i+"%";
     i++;
if(i==500)
{
     i=0;
     losd.style.background="#36f";
}
if(i>50)
{
     losd.style.background="#ffaacc";
}
if(i>100)
{
     losd.style.background="#aaccff";
}
if(i>150)
{
     losd.style.background="#ffccaa";
}
if(i>200)
{
     losd.style.background="#ccabff";
}
if(i>250)
{
     losd.style.background="yellow";
}
if(i>300)
{
     losd.style.background="pink";
}
if(i>350)
{
     losd.style.background="green";
}
if(i>400)
{
     losd.style.background="brown";
}
if(i>450)
{
     losd.style.background="red";
}
}
</script>
</head>
<input name="tfl" type="text" id="tfl"style="border:none; background-color:#C93; width:10;" align="middle" readonly="readonly"/>
<div id="losd"style=" background:#36F; height:auto; width:10"></div>
回复

使用道具 举报

小黑屋|手机版|嘻皮客网 ( 京ICP备10218169号|京公网安备11010802013797  

GMT+8, 2024-6-18 02:59 , Processed in 0.197920 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表