Install

We provide two installation methods:

Bower

bower install jquery.countdown

Manual

Download the files and add a script to your
html:

<script src="/bower_components/jquery.countdown/dist/jquery.countdown.js"></script>

Requirements

The latest versions
supports jQuery from 1.7 up
to >= 2.1. For legacy support (<= 1.6) please use the
version 1.0.2.

Introduction

For each DOM in your selector chain, an instance of the
countdown will be created with an interval, that sends signals (events) with the
time remaining components has weeks, days, hours, so on so forth (for more
details see Event
object
 section). The countdown is wrapped within the DOM
and will auto delete itself when the DOM is removed.

$('div#clock').countdown(finalDate[, callback]);

With the legacy approach you will need to handle all
events in a single callback (update, finish or stop) through
the event.typeproperty,
if you prefer an event orieted programming style, this plugin also support the
default jQuery on method to register your
callbacks.

$('div#clock').countdown(finalDate)
.on('update.countdown', callback)
.on('finish.countdown', callback);

To start the countdown the only requirement is
the finalDate, but you
still need register a callback to manipulate/update the DOM.

Arguments

finalDate

The target date that you are seeking to countdown. This
argument can be one of the following:

  • A native date object
  • The milliseconds from Epoch time
  • String formatted as following:
    • YYYY/MM/DD
    • MM/DD/YYYY
    • YYYY/MM/DD
      hh:mm:ss
    • MM/DD/YYYY
      hh:mm:ss

callback

A function that will handle the event triggered, despite the
fact we have three event types, all of them will have the same object properties
(as described bellow), where you can access the offset calculation.

function(event) { ... }

Configuration object

The plugin accepts some configuration passing by an
object has the function second argument. This way one can control the precision
the plugin will have and allow customizations:

$('div#clock').countdown(finalDate, {
elapse: '{bool} Allow to continue after finishes',
precision: '{int} The update rate in milliseconds',
defer: '{bool} Deferred initialization mode'
})

The configuration mode is only available with the new
style of initialization.

Elapse mode

The elapse mode allows the plugin to continue counting
even after reaches its finish. One can control the render within the callback
using the event.elapsed property.

$('div#clock').countdown(finalDate, {elapse: true})
.on('update.countdown', function(event) {
if (event.elapsed) { // Either true or false
// Counting up...
} else {
// Countdown...
}
});

Be aware that no finish event will be
dispatched at this mode!

Deferred initialization

The deferred initialization mode allows you to register
the callback before the countdown actually starts, this is useful when one wants
to render the proper HTML the exact time the countdown starts, (i.e. when the
countdown are really short time <= 60s).

Just be aware that the
developer MUST call
the start method manually to
begin the countdown:

// It will render correctly since the start of the plugin.
$('div#clock').countdown(finalDate, {defer: })
.on('update.countdown', function() {
// render something
})
.countdown('start');

Events

This plugin will trigger an event whenever some state
change like:

  • Update:
    Triggered to update the DOM
  • Finish:
    Triggered when finished
  • Stop:
    Triggered that paused

To register a callback use the
following event.type:

  • update.countdown
  • finish.countdown
  • stop.countdown

Be aware
that ALL events should be
registered with the namespace *.countdown.

Event object

Most of the time you will be using
the event.strftime function to
render the countdown, the next section goes deeper in this subject. But you can
access all raw values:

{
type: '{String} The namespaced event type {update,finish,stop}.countdown',
strftime: '{Function} The formatter function',
finalDate: '{Date} The parsed final date native object',
elapsed: '{bool} Passed away the final date?',
offset: {
seconds : '{int} Seconds left for the next minute',
minutes : '{int} Minutes left for the next hour',
hours : '{int} Hours left until next day',
days : '{int} Days left until next week',
daysToWeek : '{int} Days left until next week',
daysToMonth : '{int} Days left until next month',
weeks : '{int} Weeks left until the final date',
weeksToMonth: '{int} Weeks left until the next month',
months : '{int} Months left until final date',
years : '{int} Years left until final date',
totalDays : '{int} Total amount of days left until final date',
totalHours : '{int} Total amount of hours left until final date',
totalMinutes: '{int} Total amount of minutes left until final date',
totalSeconds: '{int} Total amount of seconds left until final date'
}
}

Formatter (event.strftime)

A simple formatter that helps keep your code more
semantic and avoid repetitive tasks.

It formats the offset date according to the directives
in the given format string. The directive consists of a percent (%)
character. Any text not listed as a directive will be passed through to the
output string.

event.strftime('%W weeks %-d days %-H h %M min %S sec');
// => 1 week 2 days 3 h 04 min 05 sec

All the directives contains zero-padded (01, 02, 03, …,
10) and blank-padded (1, 2, 3, …, 10) versions, to use the latter please use the
dash - modifier.

The formatter is also capable of handle pluralization
through the bang ! modifier, by default always
return the s character, if you need a
complex logic please read
the Pluralization topic of
this section.

Modifier Description
- Blank padding
! Pluralization plugin

Directives

Directive Blank-padded Description
%Y %-Y Years left *
%m %-m Months left *
%n %-n Days left until the next complete month
*
%w %-w Weeks left
%W %-W Weeks left until the next complete month
*
%d %-d Days left (taking away weeks)
%H %-H Hours left
%M %-M Minutes left
%S %-S Seconds left

* Due to their non linear
constrains the calculation does not have precision and it’s pretending to be
used as a approximation or not use at all.

There are another set of directives that returns the
full count of the time component till the end of the countdown:

Directive Blank-padded Description
%D %-D Total count of days till the end
%I %-I Total count of hours thill the end
%N %-N Total count of minutes till the end
%T %-T Total count of seconds till the
end

Pluralization

The support for pluralization is built in the formatter
by adding the ! (bang) modifier to the
directive, the default behavior is to return
the s character, it’s also
possible to customize the return using the suffix :...;.

The table bellow show the supported use cases of the
pluralization plugin.

Directive Description
%!H Return s when
the hour is different than 1
%!S:plural; Return plural when
seconds if different than 1
%!d:singular,plural; Return singular when
day is 1
and plural otherwise
event.strftime('%-D day%!D %H:%M:%S');
// => 1 day 23:45:56 (or) 2 days 23:45:56 // Now in german
event.strftime('%-D tag%!D:e; %H:%M:%S');
// => 1 tag 23:45:56 (or) 2 tage 23:45:56
event.strftime('%S %!S:sekunde,sekunden;');
// => 01 sekunde (or) 02 sekunden

Controls

The methods pause/resume allows to control the
execution flow of the countdown:

// Pause the countdown
$('div#clock').countdown('pause');
// Resume the countdown
$('div#clock').countdown('resume');

There also the aliases stop/start for the same
functionality:

// Pause the countdown
$('div#clock').countdown('stop');
// Resume the countdown
$('div#clock').countdown('start');

To set a new final date for the countdown, call the
plugin initialization function with a valid date string:

$('div#clock').countdown('2010/10/10');
// Then ...
$('div#clock').countdown('2012/20/20 12:34:56');

How to use jQuery countdown plugin的更多相关文章

  1. jQuery Countdown Timer 倒计时效果

    这个一款简单的 jQuery 倒计时插件,用于显示剩余的天数,小时,分钟和秒.倒计时功能是非常有用的一个小功能,可以告诉用户多久以后您的网站将会发布或者关闭进行维护,还可以用于举办活动的开始和停止的倒 ...

  2. 30个非常流行的提示信息插件(jQuery Tooltip Plugin)

    在网站的设计中,提示信息是非常细微的功能,但是起着非常重要的作用.如果你的网站中提示信息做的比较好,会给浏览者留下非常深刻的印象,同时也会起到非常好的网站宣传效果,下面介绍了30个比较流行提示信息插件 ...

  3. JQuery多媒体插件jQuery Media Plugin使用详解

    malsup jquery media plugin 该插件可以播放多种类型的多媒体文件包括:Flash, Quicktime, Windows Media Player, Real Player, ...

  4. jQuery DataTables Plugin Meets C#

    Over the weekend, I was doing some work on the internal CMS we use over at eagleenvision.net and I w ...

  5. jQuery Validation Plugin学习

    http://blog.csdn.net/violet_day/article/details/14109261 jQuery Validation Plugin Demo 一.默认校验规则 (1)r ...

  6. (转)jQuery Validation Plugin客户端表单证验插件

    jQuery Validation Plugin客户端表单验证插件 官方文档:http://jqueryvalidation.org/documentation/ 官方demo:http://jque ...

  7. 表单验证的validate.js插件---jQuery Validation Plugin

    早上在公交车上看了一个关于慕课网的教程<表单验证的validate.js插件---jQuery Validation Plugin>,正好可以用到自己近期开发简易微博的注册页面和登录页面, ...

  8. jQuery validator plugin 之 custom methods 案例1:multi email

    1.add method jQuery.validator.addMethod( "multiemail", function (value, element) { var ema ...

  9. jQuery webcam plugin

    jQuery webcam plugin The jQuery webcam plugin is a transparent layer to communicate with a camera di ...

随机推荐

  1. Hadoop使用场景

    Hadoop使用场景: 大数据量存储:分布式存储 日志处理: Hadoop擅长这个 海量计算: 并行计算 ETL:数据抽取到oracle.mysql.DB2.mongdb及主流数据库 使用HBase做 ...

  2. selenium+python自动化87-Chrome浏览器静默模式启动(headless)

    前言 selenium+phantomjs可以打开无界面的浏览器,实现静默模式启动浏览器完成自动化测试,这个模式是极好的,不需要占用电脑的屏幕. 但是呢,phantomjs这个坑还是比较多的,并且遇到 ...

  3. 【转】ECharts3.x中的点击事件与行为

    在ECharts中主要通过 on 方法添加事件处理函数,ECharts中的事件主要分为两种,1)鼠标事件,在鼠标click  or  hove 时触发鼠标事件: 2)另外一种是在ECharts在做图形 ...

  4. localhost 127.0.0.1

    No1: localhost也叫local ,正确的解释是:本地服务器 127.0.0.1在windows等系统的正确解释是:本机地址(本机服务器) 他们的解析通过本机的host文件,windows自 ...

  5. ImageIO(图像处理)

    1.通过ImageIO的read和writer,对图像文件进行处理. BufferedImage buffImage = ImageIO.read(file); // 将图像输出到Servlet输出流 ...

  6. 通过sizeof获得数组长度的方法

    int a[20]; int len = sizeof(a)/sizeof(*a); //值为20,即数组长度为20 注:sizeof是一个操作符,sizeof的值在编译时确定

  7. 使用FIO测试磁盘iops

    我们如何衡量一个存储的性能呢?IOPS(Input/Output OperationsPer Second),即每秒进行读写(I/O)操作的次数是国际上通用的存储性能衡量标准,IOPS越高意味着在同一 ...

  8. Haskell语言学习笔记(69)Yesod

    Yesod Yesod 是一个使用 Haskell 语言的 Web 框架. 安装 Yesod 首先更新 Haskell Platform 到最新版 (Yesod 依赖的库非常多,版本不一致的话很容易安 ...

  9. js 删除节点,jquery遍历通过内容定位节点

    $(".class1 .class2").each(function (index, item) { var gettedValue = $(item).find(".c ...

  10. Excel日期处理

    short format = cell.getCellStyle().getDataFormat(); //其值为22 输入值类型为2018/6/28 17:25:48 if (format!=22) ...