
Product
Introducing Scala and Kotlin Support in Socket
Socket now supports Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.
animated-number-vue
Advanced tools
A simple vue animated number for Vue2, using anime.
Live demo here
$ 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>
Following props
are used while initialization
Note : Only
value
is a required prop. Others are optional
Prop Name | Type | Description |
---|---|---|
value (required) | [ Number, String] | number that will be animated |
duration (optional) | Number | the duration of animation |
delay (optional) | Number | the delay of animation |
easing (optional) | String | you can found all valid values here |
Execute a function at the beginning, during or when an animation or timeline is completed.
Names | Types | Arguments | Info |
---|---|---|---|
formatValue | Function | value Number | A function that will manipulate the animated value |
update | Function | animation Object | Called at time = 0 |
run | Function | animation Object | Called after delay is finished |
begin | Function | animation Object | Called after animation delay is over |
complete | Function | animation Object | Called only after all the loops are completed |
formatValue()
is used to format the animatedValue.
update()
is called on every frame while the instance is playing.
begin()
is called once after the delay is finished.
Check if the animation has begun with myAnimation.began
, return true
or false
.
run()
is called every frame after the delay is finished.
complete()
is called once after the animation is finished.
FAQs
A vue component with number animation
The npm package animated-number-vue receives a total of 3,315 weekly downloads. As such, animated-number-vue popularity was classified as popular.
We found that animated-number-vue demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Product
Socket now supports Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.
Application Security
/Security News
Socket CEO Feross Aboukhadijeh and a16z partner Joel de la Garza discuss vibe coding, AI-driven software development, and how the rise of LLMs, despite their risks, still points toward a more secure and innovative future.
Research
/Security News
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.