当前位置: 首页 > 文档资料 > Rax 中文文档 >

Countdown

优质
小牛编辑
131浏览
2023-12-01

描述

倒计时组件,可设置倒计时毫秒数,以及展现的模板。

安装

$ npm install rax-countdown --save

属性

属性类型默认值必填描述支持
timeRemainingNumber-✔️倒计时剩余时间,单位为"毫秒"  
intervalNumber1000倒计时的间隔,单位为"毫秒"  
tplString{d}天{h}时{m}分{s}秒{ms}倒计时展示模板  
formatFuncFunction-自定义格式化剩余时间的方法,非undefined时tpl失效,处理剩余时间的展示
onTickFunction-倒计时变化时调用的方法
onCompleteFunction-倒计时完成时调用的方法
timeStyleObject-数字第一位的样式  
secondStyleObject-数字第二位的样式  
textStyleObject-时间-单位的样式  
timeWrapStyleObject-各时间区块的样式  
timeBackgroundObject-各时间区块背景(可加背景图)  
timeBackgroundStyleObject-各时间区块背景样式  

注:基础属性、事件及图片含义见组件概述

示例

import { createElement, render, Component } from 'rax';
import View from 'rax-view';
import Countdown from 'rax-countdown';
import DriverUniversal from 'driver-universal';

class App extends Component {
  onComplete() {
    console.log('countdown complete');
  }
  render() {
    return (
      <View>
        <View>
          <Countdown
            timeRemaining={100000}
            tpl={'{d}天{h}时{m}分{s}秒'}
            onComplete={this.onComplete}
          />
        </View>
        <View>
          <Countdown
            timeRemaining={100000000}
            timeStyle={{
              'color': '#007457',
              'backgroundColor': 'red',
              'marginLeft': '2rem',
              'marginRight': '2rem'
            }}
            secondStyle={{'backgroundColor': 'yellow'}}
            textStyle={{'backgroundColor': 'blue'}}
            tpl={'{d}-{h}-{m}-{s}'}
            onComplete={this.onComplete}
          />
        </View>
        <View>
          <Countdown
            timeRemaining={500000}
            tpl="{h}:{m}:{s}"
            timeStyle={{
              color: '#ffffff',
              fontSize: 40,
              position: 'relative'
            }}
            secondStyle={{
              color: '#ffffff',
              fontSize: 40,
              position: 'relative'
            }}
            timeWrapStyle={{
              borderRadius: 6,
              width: 50,
              height: 60,
              backgroundColor: '#333333',
            }}
          />
        </View>
        <View>
          <Countdown
            timeRemaining={500000}
            tpl="{h}:{m}:{s}"
            timeStyle={{
              color: '#ffffff',
              fontSize: 40,
              position: 'relative'
            }}
            secondStyle={{
              color: '#ffffff',
              fontSize: 40,
              position: 'relative'
            }}
            timeBackground={{
              uri: 'https://gw.alicdn.com/tfs/TB1g6AvPVXXXXa7XpXXXXXXXXXX-215-215.png'
            }}
            timeBackgroundStyle={{
              width: 50,
              height: 80
            }}
          />
        </View>
      </View>
    );
  }
}

render(<App />, document.body, { driver: DriverUniversal });