VUE开发--数字滚动CountTo

npm install vue-count-to
<template>
  <div class="hello">
     <countTo :startVal='startVal' :endVal='endVal' :duration='3000'></countTo>
  </div>
</template>

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

属性	描述	类型	默认值
startVal	开始值	Number	0
endVal	结束值	Number	2017
duration	持续时间,以毫秒为单位	Number	3000
autoplay	自动播放	Boolean	true
decimals	要显示的小数位数	Number	0
decimal	十进制分割	String	.
separator	分隔符	String	,
prefix	前缀	String	''
suffix	后缀	String	''
useEasing	使用缓和功能	Boolean	true
easingFn	缓和回调	Function	—


https://www.jianshu.com/p/0f90a507b4be 作者:无剑_君
链接:https://www.jianshu.com/p/0f90a507b4be
来源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

你可能感兴趣的:(VUE开发--数字滚动CountTo)