vue 数字跳动效果

<template>
    <div class="login-wrap">
        
        <animate-number
            from="0" 
            :to="today"
            duration="200" 
            easing="easeOutQuad"
            from-color="#44CC00" 
            to-color="#ec4949"
            style="font-size:30px;text-align:center;display:block;">
        </animate-number>
    </div>
</template>

<script>
    export default {
        name:'test',
        data: function(){
            return {
                today:200,
            }
        },
        methods: {

        },
        mounted:function () {

        }
    }
</script>
<style scoped>
</style>
posted @ 2022-06-20 11:17  盘思动  阅读(899)  评论(0编辑  收藏  举报