vue-countTo

It's a vue component that will count to a target number at a specified duration https://panjiachen.github.io/countTo/demo/

Github星跟蹤圖

vue-countTo

It's a vue component that will count to a target number at a specified duration

vue2
Gemnasium
license
npm
npm
minified
gzip

vue-countTo is a dependency-free, lightweight vue component that can be overwrited easingFn by yourself.
You can set startVal and endVal ,it will automatic judge count up or count down.
It is support vue-ssr.
It is learn from countUp.js;

Try the demo

How to use?

npm install vue-count-to

Example

<template>
  <countTo :startVal='startVal' :endVal='endVal' :duration='3000'></countTo>
</template>

<script>
  import countTo from 'vue-count-to';
  export default {
    components: { countTo },
    data () {
      return {
        startVal: 0,
        endVal: 2017
      }
    }
  }
</script>

demo:

demo

Use CDN Script: demo

Options, Property, Description, type, default, -----------------, ----------------, :--------:, :----------:, startVal, the value you want to begin at, Number, endVal, the value you want to arrive at, Number, 2017, duration, duration in millisecond, Number, 3000, autoplay, when mounted autoplay, Boolean, true, decimals, the number of decimal places to show, Number, decimal, the split decimal, String, ., separator, the separator, String, ,, prefix, the prefix, String, '', suffix, the suffix, String, '', useEasing, is use easing function, Boolean, true, easingFn, the easing function, Function, —, ** notes: when autoplay:true , it will auto start when startVal or endVal change **

Functions, Function Name, Description, :--------:, -----, mountedCallback, when mounted will emit mountedCallback, start, start the countTo, pause, pause the countTo, reset, reset the countTo

主要指標

概覽
名稱與所有者PanJiaChen/vue-countTo
主編程語言JavaScript
編程語言JavaScript (語言數: 2)
平台
許可證
所有者活动
創建於2017-04-13 08:52:51
推送於2023-02-22 02:20:36
最后一次提交2018-11-29 11:34:26
發布數2
最新版本名稱v1.0.11 (發布於 )
第一版名稱v1.0.6 (發布於 )
用户参与
星數1.5k
關注者數19
派生數316
提交數19
已啟用問題?
問題數45
打開的問題數31
拉請求數2
打開的拉請求數5
關閉的拉請求數1
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?