You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1.5 KiB
1.5 KiB
CountDown 倒计时
代码块:
uCountDown
倒计时组件。
安装方式
本组件符合easycom规范,HBuilderX 2.5.5
起,只需将本组件导入项目,在页面template
中即可直接使用,无需在页面中import
和注册components
。
如需通过npm
方式使用uni-ui
组件,另见文档:https://ext.dcloud.net.cn/plugin?id=55
基本用法
在 template
中使用组件
<!-- 一般用法 -->
<uni-countdown :day="1" :hour="1" :minute="12" :second="40"></uni-countdown>
<!-- 不显示天数 -->
<uni-countdown :show-day="false" :hour="12" :minute="12" :second="12"></uni-countdown>
<!-- 修改颜色 -->
<uni-countdown color="#FFFFFF" background-color="#00B26A" border-color="#00B26A" :day="1" :hour="2" :minute="30" :second="0"></uni-countdown>
API
Countdown Props
属性名 | 类型 | 默认值 | 说明 |
---|---|---|---|
backgroundColor | String | #FFFFFF | 背景色 |
color | String | #000000 | 文字颜色 |
splitorColor | String | #000000 | 分割符号颜色 |
day | Number | 0 | 天数 |
hour | Number | 0 | 小时 |
minute | Number | 0 | 分钟 |
second | Number | 0 | 秒 |
showDay | Boolean | true | 是否显示天数 |
showColon | Boolean | true | 是否以冒号为分隔符 |
Countdown Events
事件称名 | 说明 | 返回值 |
---|---|---|
@timeup | 倒计时时间到触发事件 | - |