CountUp 计数器

    1. Page({
    2. data: {},
    3. onLoad() {
    4. this.c1 = new $wuxCountUp(1, 1024, 0, 2, {
    5. printValue(value) {
    6. this.setData({
    7. c1: value,
    8. })
    9. }
    10. })
    11. printValue(value) {
    12. this.setData({
    13. c2: value,
    14. })
    15. }
    16. })
    17. this.c3 = new $wuxCountUp(0, 520, 0, 2, {
    18. printValue(value) {
    19. this.setData({
    20. c3: value,
    21. })
    22. }
    23. })
    24. this.c1.start()
    25. this.c2.start()
    26. start() {
    27. this.c3.start(() => {
    28. wx.showToast({
    29. title: '已完成',
    30. })
    31. })
    32. },
    33. reset() {
    34. },
    35. update() {
    36. this.c3.update(1314)
    37. },
    38. pauseResume() {
    39. this.c3.pauseResume()
    40. },
    41. })

    CountUp