github: github.com/qgh810/anim…vue
import AnimateText from 'animate-text'
// 最簡單的使用方法
new AnimateText('.text')
// 若是須要定義動畫時間能夠這樣初始化
new AnimateText('.text', 1000)
// 若是還有其它設置 請這樣寫
new AnimateText('.text', {
time: 1000, // 動畫時長
isNumber: true, // 是否渲染爲數字動畫
startNumber: 0, // 渲染爲數字動畫時 動畫的開始數字
changeCount: 32, // 數字動畫數字變化次數
onAnimated: function () {console.log('動畫結束')} // 動畫結束事件回調
})
複製代碼