1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
| <template>
| <span>
| {{displayValue}}
| </span>
| </template>
| <script>
| import { requestAnimationFrame, cancelAnimationFrame } from './requestAnimationFrame.js'
| export default {
| props: {
| startVal: {
| type: Number,
| required: false,
| default: 0
| },
| endVal: {
| type: Number,
| required: false,
| default: 2017
| },
| duration: {
| type: Number,
| required: false,
| default: 3000
| },
| autoplay: {
| type: Boolean,
| required: false,
| default: true
| },
| decimals: {
| type: Number,
| required: false,
| default: 0,
| validator(value) {
| return value >= 0
| }
| },
| decimal: {
| type: String,
| required: false,
| default: '.'
| },
| separator: {
| type: String,
| required: false,
| default: ','
| },
| prefix: {
| type: String,
| required: false,
| default: ''
| },
| suffix: {
| type: String,
| required: false,
| default: ''
| },
| useEasing: {
| type: Boolean,
| required: false,
| default: true
| },
| easingFn: {
| type: Function,
| default(t, b, c, d) {
| return c * (-Math.pow(2, -10 * t / d) + 1) * 1024 / 1023 + b;
| }
| }
| },
| data() {
| return {
| localStartVal: this.startVal,
| displayValue: this.formatNumber(this.startVal),
| printVal: null,
| paused: false,
| localDuration: this.duration,
| startTime: null,
| timestamp: null,
| remaining: null,
| rAF: null
| };
| },
| computed: {
| countDown() {
| return this.startVal > this.endVal
| }
| },
| watch: {
| startVal() {
| if (this.autoplay) {
| this.start();
| }
| },
| endVal() {
| if (this.autoplay) {
| this.start();
| }
| }
| },
| mounted() {
| if (this.autoplay) {
| this.start();
| }
| this.$emit('mountedCallback')
| },
| methods: {
| start() {
| this.localStartVal = this.startVal;
| this.startTime = null;
| this.localDuration = this.duration;
| this.paused = false;
| this.rAF = requestAnimationFrame(this.count);
| },
| pauseResume() {
| if (this.paused) {
| this.resume();
| this.paused = false;
| } else {
| this.pause();
| this.paused = true;
| }
| },
| pause() {
| cancelAnimationFrame(this.rAF);
| },
| resume() {
| this.startTime = null;
| this.localDuration = +this.remaining;
| this.localStartVal = +this.printVal;
| requestAnimationFrame(this.count);
| },
| reset() {
| this.startTime = null;
| cancelAnimationFrame(this.rAF);
| this.displayValue = this.formatNumber(this.startVal);
| },
| count(timestamp) {
| if (!this.startTime) this.startTime = timestamp;
| this.timestamp = timestamp;
| const progress = timestamp - this.startTime;
| this.remaining = this.localDuration - progress;
|
| if (this.useEasing) {
| if (this.countDown) {
| this.printVal = this.localStartVal - this.easingFn(progress, 0, this.localStartVal - this.endVal, this.localDuration)
| } else {
| this.printVal = this.easingFn(progress, this.localStartVal, this.endVal - this.localStartVal, this.localDuration);
| }
| } else {
| if (this.countDown) {
| this.printVal = this.localStartVal - ((this.localStartVal - this.endVal) * (progress / this.localDuration));
| } else {
| this.printVal = this.localStartVal + (this.endVal - this.localStartVal) * (progress / this.localDuration);
| }
| }
| if (this.countDown) {
| this.printVal = this.printVal < this.endVal ? this.endVal : this.printVal;
| } else {
| this.printVal = this.printVal > this.endVal ? this.endVal : this.printVal;
| }
|
| this.displayValue = this.formatNumber(this.printVal)
| if (progress < this.localDuration) {
| this.rAF = requestAnimationFrame(this.count);
| } else {
| this.$emit('callback');
| }
| },
| isNumber(val) {
| return !isNaN(parseFloat(val))
| },
| formatNumber(num) {
| num = num.toFixed(this.decimals);
| num += '';
| const x = num.split('.');
| let x1 = x[0];
| const x2 = x.length > 1 ? this.decimal + x[1] : '';
| const rgx = /(\d+)(\d{3})/;
| if (this.separator && !this.isNumber(this.separator)) {
| while (rgx.test(x1)) {
| x1 = x1.replace(rgx, '$1' + this.separator + '$2');
| }
| }
| return this.prefix + x1 + x2 + this.suffix;
| }
| },
| destroyed() {
| cancelAnimationFrame(this.rAF)
| }
| };
| </script>
|
|