countDowner

倒计时模块

Source:
Parameters:
Name Type Description
obj Object

必填项,以对象字面量形式传参

Properties
Name Type Description
countFromInMs Number

倒计时开始时的剩余时间,单位ms

onTimeout function

倒计时结束时执行的回调函数

onTimeChange function

每隔interval时间触发一次的回调函数,参数

interval Number

每间隔interval毫秒计算一次剩余时间,计算结果通过onTimeChange函数*入参传给调用方

Methods

off(eventName, fn)

Source:

取消事件监听

Parameters:
Name Type Description
eventName string

事件名(timeout、 timechange)

fn function

回调函数

on(eventName, fn)

Source:

事件监听函数

Parameters:
Name Type Description
eventName string

事件名(timeout、 timechange)

fn function

回调函数

pause()

Source:

暂停

Parameters:
Name Type Description
Object.strict Object

是否从暂停时间开始计算剩余时间(默认为true)

restart()

Source:

重启