首页 > 语言 > JavaScript > 正文

JavaScript实现的一个倒计时的类

2024-05-06 16:16:38
字体:
来源:转载
供稿:网友

这篇文章主要介绍了JavaScript实现的一个倒计时的类,本文直接给出demo代码,需要的朋友可以参考下

近期在做排列五的彩票项目,每一期都有购彩时段,即用户打开这个排列五的页面时,会从服务器传来一个remaintime(离本次彩期结束的剩余时间),然后这个时间在客户端递减呈现给用户看,让用户获得本次彩期的剩余时间。

实现原理挺简单的,在此不在赘述,运行以下代码查看demo:

 

 
  1. <!doctype html> 
  2. <html> 
  3. <head> 
  4. <meta http-equiv="Content-Type" content="text/html; charset=gbk" /> 
  5. <title>index</title> 
  6. <style type="text/css"
  7. em{color:#f00;} 
  8. </style> 
  9. </head> 
  10.  
  11. <body> 
  12. <div id="remaintime"></div> 
  13. <script type="text/javascript"
  14.  
  15. var TheTime = function(){ 
  16. this.init.apply(this,arguments); 
  17. }; 
  18.  
  19. TheTime.prototype = { 
  20. init: function(obj){ 
  21. var that = this
  22. obj = that.buildParam(obj); 
  23. that.callback = obj.callback; 
  24. var container = that.container = document.getElementById(obj.container); 
  25. container.innerHTML = '<em></em>小时<em></em>分钟<em></em>秒'
  26. var hourSpace = that.hourSpace = container.getElementsByTagName('em')[0]; 
  27. var minuteSpace = that.minuteSpace = container.getElementsByTagName('em')[1]; 
  28. var secondSpace = that.secondSpace = container.getElementsByTagName('em')[2]; 
  29. if(obj.remaintime==0){ 
  30. that.resetTime(); 
  31. return
  32.  
  33. that.hours = Math.floor(obj.remaintime/3600); 
  34. that._remainder1 = obj.remaintime % 3600; 
  35. that.minutes = Math.floor(that._remainder1/60); 
  36. that.seconds = that._remainder1 % 60; 
  37. var timer = that.timer = setInterval(function(){ 
  38. that.renderTime.apply(that); 
  39. },1000); 
  40. }, 
  41. buildParam: function(obj){ 
  42. obj = { 
  43. //container为dom节点的id 
  44. container: obj.container || 'container'
  45. remaintime: Number(obj.remaintime) || 0, 
  46. //倒计时完成后的回调 
  47. callback: obj.callback || new Function 
  48. }; 
  49. return obj; 
  50. }, 
  51. resetTime: function(){ 
  52. var that = this
  53. that.container.innerHTML = "已经截止"
  54. }, 
  55. //刷新时间 
  56. renderTime: function(){ 
  57. //debugger; 
  58. var that = this
  59. if(that.seconds>0){ 
  60. that.seconds--; 
  61. }else
  62. that.seconds = 59; 
  63. if(that.minutes>0){ 
  64. that.minutes--; 
  65. }else
  66. that.minutes = 59; 
  67. if(that.hours>0){ 
  68. that.hours--; 
  69.  
  70. //时刻监听 
  71. if(that.hours==0 && that.minutes==0 && that.seconds==0){ 
  72. //执行回调 
  73. that._callback(); 
  74. var bitHandle = that.bitHandle; 
  75.  
  76. var _hour = bitHandle(that.hours); 
  77. var _minute = bitHandle(that.minutes); 
  78. var _second = bitHandle(that.seconds); 
  79. that.hourSpace.innerHTML = _hour; 
  80. that.minuteSpace.innerHTML = _minute; 
  81. that.secondSpace.innerHTML = _second; 
  82. }, 
  83. //对于位数的处理,确保返回两位数 
  84. bitHandle: function(num){ 
  85. var str = num.toString(); 
  86. if(str.length<2){ 
  87. str = 0 + str; 
  88. return str; 
  89. }, 
  90. _callback: function(){ 
  91. var that = this
  92. clearInterval(that.timer); 
  93. that.callback(); 
  94.  
  95. }; 
  96.  
  97. new TheTime({ 
  98. //容器id 
  99. container: 'remaintime'
  100. //服务器返回的剩余时间,单位为秒 
  101. remaintime: 10000, 
  102. //倒计时完成时的回调 
  103. callback: function(){ 
  104. document.getElementById('remaintime').innerHTML = '已截止'
  105. }); 
  106. </script> 
  107. </body> 
  108. </html> 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选