All Projects → samcrosoft → vue-countup

samcrosoft / vue-countup

Licence: MIT License
A plugin to count up to a figure using Vue.js

Programming Languages

javascript
184084 projects - #8 most used programming language
Vue
7211 projects
HTML
75241 projects

Projects that are alternatives of or similar to vue-countup

HurdleDMR.jl
Hurdle Distributed Multinomial Regression (HDMR) implemented in Julia
Stars: ✭ 19 (-54.76%)
Mutual labels:  count
CounterView
一个数字变化效果的计数器视图控件
Stars: ✭ 38 (-9.52%)
Mutual labels:  count
countapi-js
Wrapper for CountAPI using promises.
Stars: ✭ 37 (-11.9%)
Mutual labels:  count
MD REncoder
Rotary Encoder Library
Stars: ✭ 25 (-40.48%)
Mutual labels:  count
CorBinian
CorBinian: A toolbox for modelling and simulating high-dimensional binary and count-data with correlations
Stars: ✭ 15 (-64.29%)
Mutual labels:  count
LinqBenchmarks
Benchmarking LINQ and alternative implementations
Stars: ✭ 138 (+228.57%)
Mutual labels:  count
vue-countable
✍️ Vue binding for countable.js. Provides real-time paragraph, sentence, word, and character counting.
Stars: ✭ 25 (-40.48%)
Mutual labels:  count
linec
🍬一个高颜值命令行统计代码行数的计数器。(counts lines of code)
Stars: ✭ 121 (+188.1%)
Mutual labels:  count
sp who3
The sp_who3 stored procedure is a custom and open source alternative to the sp_who system stored procedures available in SQL Server.
Stars: ✭ 49 (+16.67%)
Mutual labels:  count
subtlex-word-frequencies
A list of words from the SUBTLEX movie subtitles corpus, sorted by frequency.
Stars: ✭ 25 (-40.48%)
Mutual labels:  count
recount
R package for the recount2 project. Documentation website: http://leekgroup.github.io/recount/
Stars: ✭ 40 (-4.76%)
Mutual labels:  count
count.macro
Babel macro for counting number of lines or words in files at compile time
Stars: ✭ 20 (-52.38%)
Mutual labels:  count
Data-Structure-Algorithm-Programs
This Repo consists of Data structures and Algorithms
Stars: ✭ 464 (+1004.76%)
Mutual labels:  count
CircularCountdown
Android library to create a circular countdown, fully written in Kotlin
Stars: ✭ 24 (-42.86%)
Mutual labels:  count

VueCountUp

CountUp plugin implemented for use with Vue.js.

This is a component built for the very interesting CountUp plugin

Usage

Installation

Firstly, insert the vue.js script and then insert a reference to the vue-countUp library as done below

    <script scr='/path/to/vue/vue.js'></script>
    <script scr='/path/to/vuecountup/dist/vue-count-up.js'></script>

Install Using Windows Global

    <script type='text/javascript'>
        Vue.use(window.VueCountUp);
    </script>

or, Install Using Module Loader

    <script type='text/javascript'>
        Vue.use(require('vue-countup'));
    </script>

Use in templates

You can insert a count up element like below

<vuecountup class="myCounter" :end="2500" :duration="2.5" :options="{useEasing : true,
            useGrouping : true,
            separator : ',',
            decimal : '.',
            prefix : '',
            suffix : ''}"></vuecountup>
            

You can specify all the attributes listed below, only the end attribute is required

See CountUp documentation for all available attributes.

Available Attributes

  1. start - This is the start value for the count up
    • type: Number
    • required : false
    • default : 0
  2. end - This is the value that count-up counts to
    • type: Number
    • required : true
  3. decimal - This is the number of decimal places the count-up component should use in display
    • type: Number
    • required : false
    • default : 0
  4. duration - This is the duration for the countup animation to count from start to end
    • type: Number
    • required : false
    • default : 2.5
  5. options - This is the option for the countup plugin
    • type: Object
    • required : false

See CountUp documentation for all available attributes.

License

This plugin is released under the MIT Licence

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].