count-to-test

1.0.2 • Public • Published

countToTest

a number count pakages

How to use?

npm install count-to-test

Example

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

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

Options

Property Description type default
countStyle the count style String ''
startVal the value you want to begin at Number 0
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 0
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

/count-to-test/

    Package Sidebar

    Install

    npm i count-to-test

    Weekly Downloads

    3

    Version

    1.0.2

    License

    MIT

    Unpacked Size

    43 kB

    Total Files

    4

    Last publish

    Collaborators

    • step-city