https://github.com/superraytin/jquery-countdown
jQuery countdown plugin.
https://github.com/superraytin/jquery-countdown
Last synced: 2 months ago
JSON representation
jQuery countdown plugin.
- Host: GitHub
- URL: https://github.com/superraytin/jquery-countdown
- Owner: superRaytin
- License: mit
- Created: 2013-09-20T03:49:51.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-09-20T04:32:03.000Z (over 11 years ago)
- Last Synced: 2025-01-24T05:25:17.917Z (4 months ago)
- Homepage:
- Size: 125 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
kTimer
======> 简洁小巧的jQuery倒计时插件,可自定义倒计时的时间格式,如“剩余时间:dd天 hh小时 mm分钟 ss秒“。
# 参数 & Params
参 数
描 述
format
格式化显示信息,支持HTML标签,如:还剩 dd 天 hh 时 mm 分 ss 秒
fromNowOn
从当前时间起之后的时间段,单位分钟,默认无
endTime
结束时间,遵守时间格式如:2012/12/31 23:59:59
callback
倒计时结束之后触发的回调
# 栗子 & Example
15分钟倒计时:```javascript
$('#box').kTimer({
format: '剩余时间:dd天 hh小时 mm分钟 ss秒',
endTime: '2013/12/30 23:59:59',
fromNowOn: 15,
callback: function(){
alert('时间到了!');
}
});```
# 更新日志 & ChangeLog
* 2013-05-06 倒计时增加可设置往后时间段
* 2013-05-06 增加时间结束时回调
* 2013-05-06 时间格式hh小时可不选# License
本项目基于MIT协议发布MIT: [http://rem.mit-license.org](http://rem.mit-license.org/) 详见 [LICENSE](/LICENSE) 文件