mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-06 16:37:18 +08:00
36 lines
706 B
Vue
36 lines
706 B
Vue
<script setup lang="ts">
|
|
import { ReNormalCountTo, ReboundCountTo } from "@/components/ReCountTo";
|
|
|
|
defineOptions({
|
|
name: "CountTo"
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<el-card shadow="never">
|
|
<template #header>
|
|
<div class="card-header">
|
|
<span class="font-medium">数字动画</span>
|
|
</div>
|
|
</template>
|
|
<ReNormalCountTo
|
|
prefix="$"
|
|
:duration="1000"
|
|
:color="'#409EFF'"
|
|
:fontSize="'2em'"
|
|
:startVal="1"
|
|
:endVal="1000"
|
|
/>
|
|
<br />
|
|
<ul class="flex">
|
|
<ReboundCountTo
|
|
v-for="(num, inx) of [1, 6, 6, 6]"
|
|
:key="inx"
|
|
:i="num"
|
|
:blur="inx"
|
|
:delay="inx + 1"
|
|
/>
|
|
</ul>
|
|
</el-card>
|
|
</template>
|