React Native倒计时

前端之家收集整理的这篇文章主要介绍了React Native倒计时前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

在开发电商相关的APP的时候,经常会有秒杀,团购的倒计时的需求,跟大家推荐一个开源的倒计时组件:

github地址:https://github.com/jackuhan/react-native-CountDowntimer

该组件只需要添加一个结束时间即可,非常方便,适用于商品秒杀页面等。

效果图如下:


示例代码

import CountDown from './CountDownReact'

 <CountDown
          //date={new Date(parseInt(endTime))}
          date="2017-11-28T00:00:00+00:00"
          days={{plural: 'Days ',singular: 'day '}}
          hours=':'
          mins=':'
          segs=''

          daysStyle={styles.time}
          houRSStyle={styles.time}
          minsStyle={styles.time}
          secsStyle={styles.time}
          firstColonStyle={styles.colon}
          secondColonStyle={styles.colon}
      />
原文链接:https://www.f2er.com/react/304458.html

猜你在找的React相关文章