- 快速开始
- JSX 介绍
- JSX+ 介绍
- 组件
- 事件处理
- 样式设置
- Hooks 介绍
- Driver 介绍
- 容器差异
- 工程介绍
- 目录结构
- 应用配置
- 应用入口
- 生命周期
- 路由管理
- 简介
- 语法约束
- Hooks
- 多端组件开发
- API 使用
- 静态资源引用
- 项目构建配置
- 页面配置
- 使用原生项目配置文件
- Rax 与小程序代码混用
- FAQ
- 更新日志
- 简介
- 环境变量与 Framework
- Weex Style 支持表
- Weex 组件
- Weex 模块
- 页面降级
- JS Service
- Bundle 解析
- 事件与手势
- 事件通信
- Weex 国际化
- Weex 常见问题
- 简介
- Document
- App Shell
- 代码分离
- 保存至桌面
- 渲染节点快照
- 预加载和预渲染
- 页面保活
- 缓存控制
- PHA 介绍
- 快速开始
- 编码指南
- 数据请求
- FaaS 接入: Now
- FaaS 接入: FC
- 与 Node 应用集成
- 数据请求
- 异步编程
- Rax 错误码
- 简介
- Lite 工程
- 云端一体化工程
- 插件配置
- 插件开发
- 插件简介
- build-plugin-rax-app
- build-plugin-rax-component
- build-plugin-rax-multi-pages
- build-plugin-rax-ssr
- build-plugin-rax-compat-react
- rax-plugin-app 0.1.0 升级
- 调试 Web
- 调试小程序
- 加载性能优化
- 渲染性能优化
- 从 Rax 0.x 升级
- 从 React 迁移
- API 概述
- render
- hydrate
- createPortal
- findDOMNode
- setNativeProps
- getElementById
- unmountComponentAtNode
- createElement
- cloneElement
- createFactory
- isValidElement
- Children
- memo
- Fragment
- createRef
- forwardRef
- useState
- useEffect
- useLayoutEffect
- useContext
- useRef
- useCallback
- useMemo
- useReducer
- useImperativeHandle
- PropTypes
- version
- ActionSheet
- Background
- Keyboard
- Animation
- Transition
- Toast
- Alert
- Confirm
- Loading
- Navigate
- ChooseImage
- Image
- Request
- Network
- File
- Env
- Device
- Clipboard
- AppState
- AsyncStorage
- Accelerometer
- 组件概述
- Text
- View
- TextInput
- Link
- Icon
- Image
- Picture
- Video
- ScrollView
- RecyclerView
- Waterfall
- Embed
- Countdown
- Canvas
- RefreshControl
- Slider
- Modal
- Weex JS Service
- Rax 长列表最佳实践
- 如何减小 Bundle Size
- Rax 0.x 开发工具
- Native 知识扫盲
- iOS 无障碍
- Rax 性能最佳实践
- 从零上手 Rax
- Rax v0.6 组件体验升级
- Rax v0.5 建立服务体系
- Rax v0.3 跨端生态建设
- Rax v0.2 基础能力建设
- 2016 淘宝双促中的 Rax
- Why Rax?
文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
Countdown
描述
倒计时组件,可设置倒计时毫秒数,以及展现的模板。
安装
$ npm install rax-countdown --save
属性
属性 | 类型 | 默认值 | 必填 | 描述 | 支持 |
---|---|---|---|---|---|
timeRemaining | Number | - | ✔️ | 倒计时剩余时间,单位为"毫秒" | |
interval | Number | 1000 | ✘ | 倒计时的间隔,单位为"毫秒" | |
tpl | String | {d}天{h}时{m}分{s}秒{ms} | ✘ | 倒计时展示模板 | |
formatFunc | Function | - | ✘ | 自定义格式化剩余时间的方法,非undefined时tpl失效,处理剩余时间的展示 | |
onTick | Function | - | ✘ | 倒计时变化时调用的方法 | |
onComplete | Function | - | ✘ | 倒计时完成时调用的方法 | |
timeStyle | Object | - | ✘ | 数字第一位的样式 | |
secondStyle | Object | - | ✘ | 数字第二位的样式 | |
textStyle | Object | - | ✘ | 时间-单位的样式 | |
timeWrapStyle | Object | - | ✘ | 各时间区块的样式 | |
timeBackground | Object | - | ✘ | 各时间区块背景(可加背景图) | |
timeBackgroundStyle | Object | - | ✘ | 各时间区块背景样式 |
注:基础属性、事件及图片含义见组件概述。
示例
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 });
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论