Skip to content

TextAnimation 文案动画 v2.12.0


按需引入

ts
import { createApp } from 'vue'
import App from './App.vue'
import { MeTextAnimation } from 'mine-h5-ui'
import 'mine-h5-ui/styles/MeTextAnimation.css'

createApp(App).use(MeTextAnimation).mount('#app')

提示

  • 如果你觉得重新编写 HTML 结构麻烦,可以直接复制下面的代码。

代码演示

基础用法

  • 通过属性 text 来设置文案内容
html
<me-text-animation text="演示" />

自定义颜色

  • 通过属性 color 来设置覆盖的颜色, 默认为 #409eff
  • 通过属性 background 来设置镂空的颜色色, 默认为 #fff
html
<me-text-animation text="演示" color="#a541ff" background="#3fbbfe" />

自定义字体

  • 通过属性 size 来设置字体大小, 默认为 24
  • 通过属性 family 来设置字体, 默认为 Arial
html
<me-text-animation text="演示" :size="20" family="cursive" />

边框动画

  • 通过属性 type 来设置动画类型, 默认为 default
html
<me-text-animation text="演示" type="border" />

API

参数

参数说明类型可选值默认值版本
type动画类型stringdefault / borderdefaultv2.12.0
size字体大小number--24v2.12.0
family字体string--Arialv2.12.0
color颜色string--#409effv2.12.0
background背景色string--#fffv2.12.0
text文本string----v2.12.0

方法

方法名说明回调参数版本
--------

基于 MIT 许可发布