🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

github.com/Leocardoso94/animated-number-vue

Package Overview
Dependencies
Alerts
File Explorer
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/Leocardoso94/animated-number-vue

v1.0.2
Source
Go
Version published
Created
Source

animated-number-vue

npm Build Status

A simple vue animated number for Vue2, using anime.

Live demo here

Usage

$ npm install animated-number-vue
# OR
$ yarn add animated-number-vue
<template>
  <animated-number
    :value="value"
    :formatValue="formatToPrice"
    :duration="300"
  />
</template>
<script>
import AnimatedNumber from "animated-number-vue";

export default {
  components: {
    AnimatedNumber
  },
  data() {
    return {
      value: 1000
    };
  },
  methods: {
    formatToPrice(value) {
      return `R$ ${value.toFixed(2)}`;
    }
  }
};
</script>

View demo here Edit animated-number-vue

Props

Following props are used while initialization

Note : Only value is a required prop. Others are optional

Prop NameTypeDescription
value (required)[ Number, String]number that will be animated
duration (optional)Numberthe duration of animation
round (optional)Numberremove decimals by rounding the value
delay (optional)Numberthe delay of animation
easing (optional)Stringyou can found all valid values here

Callbacks props

Execute a function at the beginning, during or when an animation or timeline is completed.

NamesTypesArgumentsInfo
formatValueFunctionvalue NumberA function that will manipulate the animated value
updateFunctionanimation ObjectCalled at time = 0
runFunctionanimation ObjectCalled after delay is finished
beginFunctionanimation ObjectCalled after animation delay is over
completeFunctionanimation ObjectCalled only after all the loops are completed

Format Value

formatValue() is used to format the animatedValue.

Update

update() is called on every frame while the instance is playing.

Begin

begin() is called once after the delay is finished.

Check if the animation has begun with myAnimation.began, return true or false.

Run

run() is called every frame after the delay is finished.

Complete

complete() is called once after the animation is finished.

FAQs

Package last updated on 29 Aug 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts