Giter Site home page Giter Site logo

riderx / vue-animated-number Goto Github PK

View Code? Open in Web Editor NEW

This project forked from nkoik/vue-animated-number

2.0 1.0 0.0 140 KB

:1234: This is a Vue number plugin. It animates the number that you pass in prop.

License: MIT License

Vue 89.38% JavaScript 10.62%

vue-animated-number's Introduction

Animated Counter - Number VueJS v3.x compatible

This is a Vue number plugin. It animates the number that you pass in prop.

GitHub license npm icon

✔ Demo

https://codesandbox.io/s/8256nwlq78

✔ Installation

Get the package:

npm install vue-number-animation

✔ Use

Register Animate Number in your app:

import Vue from 'vue'
import VueNumber from 'vue-number-animation'

Vue.use(VueNumber)

In your Vue file you can call it like this:

<number
    ref="number1"
	:from="100"
	:to="10000"
	:format="theFormat"
	:duration="5"
    :delay="2"
    easing="Power1.easeOut"/>

<number
    animationPaused
    ref="number2"
	:to="10000"
	:duration="5"
    easing="Back.easeIn"
    @complete="completed"
    @click="playAnimation"/>

<script>
export default {
    // Sets the format of the number
    methods: {
        theFormat(number) {
            return number.toFixed(2);
        },
        completed() {
            console.log('Animation ends!');
        },
        playAnimation() {
            this.$refs.number2.play()
        }
    }
}
</script>

API

Required Prop

Property Description Type Default
to Animation end point Number -

Optional Props

Property Description Type Default
from Animation start point Number 0
duration Duration of the animation (seconds) Number 1
delay Amount of delay (seconds) before the animation starts Number 0
easing Ease of the animation String 'Power1.easeOut'
animationPaused Pauses animation at starting point Boolean false

Easing prop

Choose from various eases to control the rate of change during the animation. These are all the values that the prop gets. https://greensock.com/docs/Easing

eases

Don't forget the '.' between ease name eg. Circ.easeInOut

Events

Event Description
@start Called when the animation has started
@complete Called when the animation has completed
@update Called every time the animation updates (on every frame while the animation is active)

Methods

Method Description
play() Starts the animation
pause() Pauses the animation
restart() Restarts and begins playing forward from the beginning

✔ License

MIT

vue-animated-number's People

Contributors

jdefelice avatar nkoik avatar riderx avatar solancer avatar

Stargazers

 avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.