java面向对象stopwatch,JS基于面向对象实现的多个倒计时器功能示例

本文实例讲述了JS基于面向对象实现的多个倒计时器功能。分享给大家供大家参考,具体如下:

运行效果图如下:

cf705a57e53f8547bcededbeecf99c59.png

实现代码如下:

代码

/p>

"http://www.w3.org/TR/html4/loose.dtd">

JavaScript测试文件
0小时
0
10
1小时
31
31
2小时
32
32
3小时
33
33
4小时
34
34

//名山计时器:

function msTimeCount(){

this._hour=0; //“小时”数

this._minute=0; //“分”数

this._seconds=0; //“秒”数

//

this._hourHtmlObj={};//“小时”html对象

this._minuteHtmlObj={};//“分”html对象

this._secondsHtmlObj={};//“秒”html对象

//

this._totalSeconds=0;//总秒数

};

msTimeCount.prototype={

//1.获取对象

$:function(ID){

return document.getElementById(ID);

},

//2.初始化:

/*

* arrTime: 传入时间数组,格式为[1,30,30],代表 1小时30分30秒;

* arrHtmlObj: 更新时间数据的Html对象数组,格式为["hour","minute","seconds"];

*/

init:function(arrTime,arrHtmlObj){

var _this=this;

_this._hour=parseInt(arrTime[0]);

_this._minute=parseInt(arrTime[1]);

_this._seconds=parseInt(arrTime[2]);

_this._hourHtmlObj=_this.$(arrHtmlObj[0]);

_this._minuteHtmlObj=_this.$(arrHtmlObj[1]);

_this._secondsHtmlObj=_this.$(arrHtmlObj[2]);

_this._totalSeconds=parseInt(_this._hour*60*60+_this._minute*60+_this._seconds);

//开始计时:

_this.timeCount();

},

//3.计时器:

timeCount:function(){

var _this=this;

var tmpTimeCount=setInterval(

function(){

_this._totalSeconds--;

//alert(_this._totalSeconds);

_this.refreshTime();

if(_this._totalSeconds<1){

clearInterval(tmpTimeCount);

return;

}

}

,1000);

},

//4.刷新页面时间:

refreshTime:function(){

var _this=this;

if(_this._totalSeconds>0){

_this._hour=parseInt(_this._totalSeconds/3600);

_this._minute=parseInt((_this._totalSeconds-_this._hour*3600)/60);

_this._seconds=_this._totalSeconds-_this._hour*3600-_this._minute*60;

}else{

_this._hour=_this._minute=_this._seconds=0;

}

_this._hourHtmlObj.innerHTML=_this._hour;

_this._minuteHtmlObj.innerHTML=_this._minute;

_this._secondsHtmlObj.innerHTML=_this._seconds;

}

}

var timeCount0=new msTimeCount();

timeCount0.init([0,0,10],["hour0","minute0","seconds0"]);

var timeCount1=new msTimeCount();

timeCount1.init([1,31,31],["hour1","minute1","seconds1"]);

var timeCount2=new msTimeCount();

timeCount2.init([2,32,32],["hour2","minute2","seconds2"]);

var timeCount3=new msTimeCount();

timeCount3.init([3,33,33],["hour3","minute3","seconds3"]);

var timeCount4=new msTimeCount();

timeCount4.init([4,34,34],["hour4","minute4","seconds4"]);

PS:这里再为大家推荐几款时间及计时器相关工具供大家参考使用:

希望本文所述对大家JavaScript程序设计有所帮助。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值