| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231 |
- <template>
- <div style="display: inline-block">
- <i :class="[bg ? 'bg' : '']" v-for="(i,k) in zero" :key="'k'+k">0</i>
- <i v-for="(i, k) in displayValue" :key="k" :class="[bg ? 'bg' : '']">{{ i }}</i>
- </div>
- </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: 2000
- },
- 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;
- }
- },
- length:{
- type: [Number,null],
- default: null
- },
- bg: {
- type: Boolean,
- default: false
- }
- },
- 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,
- zero:[]
- };
- },
- computed: {
- countDown() {
- return this.startVal > this.endVal;
- }
- },
- watch: {
- startVal() {
- if (this.autoplay) {
- this.start();
- }
- },
- endVal() {
- if (this.autoplay) {
- this.start();
- if (this.length) {
- this.zero = this.length - String(this.endVal).length > 0 ? this.length - String(this.endVal).length : 0
- }
- }
- }
- },
- mounted() {
- if (this.autoplay) {
- this.start();
- }
- if(this.length){
- this.zero=this.length-String(this.endVal).length>0?this.length-String(this.endVal).length:0
- }
- 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>
- <style lang="less" scoped>
- i {
- font-style: normal;
- display: inline-block;
- text-align: center;
- width: 26px;
- font-family: FXLed;
- font-size: 27px;
- text-align: center;
- line-height: 37px;
- height: 37px;
- color: #fff;
- margin-right: 4px;
- }
- i:last-child {
- margin-right: 0;
- }
- .bg {
- background-image: url(https://ore-1302260927.cos.ap-chengdu.myqcloud.com/data_screen/image/num_bg.png);
- background-repeat: no-repeat;
- background-size: 100% 100%;
- }
- </style>
|