示例仅供参考,请以真机为主

Countdown 倒计时

参数

参数说明类型可选值默认值
simple是否精简:为 00 时自动隐藏booleanfalse
font-size字体大小number26
day还剩 n 天number
hour还剩 n 时number
minute还剩 n 分number
second还剩 n 秒number
datetime日期date / string
number-style数字样式object
text-style分隔符样式object

事件

事件名称说明回调参数
stop停止时触发
done结束时触发

方法

事件名称说明参数
next继续
stop暂停

示例

基本用法

<cl-countdown :hour="5"></cl-countdown>

精简模式

为 00 时自动隐藏

<cl-countdown :hour="1" simple></cl-countdown>

自定义格式

配置 format 参数

— d 天 — h 时 — m 分 — s 秒

<cl-countdown :hour="5" format="{d}天{h}时{m}分{s}秒后结束"></cl-countdown>

自定义样式

配置 number-styletext-style 参数

<cl-countdown
	:hour="5"
	:font-size="40"
	:number-style="{
        backgroundColor: 'red',
        color: '#fff',
    }"
></cl-countdown>
Last Updated: