How to use jQuery countdown plugin

Install 

We provide two installation methods:

Bower
Manual

Download the files and add a script to your html:

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.

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.

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.

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:

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.

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:

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:

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.

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.

ModifierDescription
-Blank padding
!Pluralization plugin
Directives
DirectiveBlank-paddedDescription
%Y%-YYears left *
%m%-mMonths left *
%n%-nDays left until the next complete month *
%w%-wWeeks left
%W%-WWeeks left until the next complete month *
%d%-dDays left (taking away weeks)
%H%-HHours left
%M%-MMinutes left
%S%-SSeconds 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:

DirectiveBlank-paddedDescription
%D%-DTotal count of days till the end
%I%-ITotal count of hours thill the end
%N%-NTotal count of minutes till the end
%T%-TTotal 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.

DirectiveDescription
%!HReturn 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

Controls 

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

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

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

转载于:https://www.cnblogs.com/mouseleo/p/9604006.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值