带有闪烁粒子动画效果的文字组件,文字周围会显示随机闪烁的星光。
<template>
<FmSparklesText text="Fantastic-admin" />
</template><template>
<FmSparklesText text="闪耀效果" :sparkles-count="15" />
</template><template>
<FmSparklesText
text="彩色星光"
:colors="{ first: '#ff6b6b', second: '#4ecdc4' }"
/>
</template>| 参数 | 说明 | 类型 | 默认值 |
|---|---|---|---|
| text | 要显示的文字 | string | required |
| sparklesCount | 闪烁粒子数量 | number | 10 |
| colors | 粒子颜色配置 | { first: string, second: string } | { first: '#9E7AFF', second: '#FE8BBB' } |
| class | 自定义类名 | HTMLAttributes['class'] | undefined |
<template>
<div class="text-center py-8">
<FmSparklesText
text="欢迎使用"
class="text-5xl font-bold"
:colors="{ first: '#fbbf24', second: '#f59e0b' }"
/>
</div>
</template><template>
<FmSparklesText
text="PRO"
class="text-6xl font-black"
:sparkles-count="20"
:colors="{ first: '#8b5cf6', second: '#d946ef' }"
/>
</template><template>
<FmSparklesText
text="NEW"
class="text-sm font-bold"
:sparkles-count="6"
/>
</template>