animate-bg-text-canvas
v0.0.1
Published
动画文字背景
Downloads
1
Readme
animate-un
动画文字背景
API
/**
@param hMin 颜色 h 最小值
@param hMax 颜色 h 最大值
@param sizeMin 文字最小值
@param sizeMax 文字最大值
@param bgColor 背景颜色
*/
let animatedTextBg = new AnimateBgTextCanvas(bgColor, hMin, hMax, sizeMin = 50, sizeMax = 350)
// hMin hMax 对应 hue 的颜色值
// 其它操作
animatedTextBg.play() // 心动起来
animatedTextBg.stop() // 心不动
使用说明
1. 浏览器
使用 animate-bg-text-canvas-browser.js
这个文件
// 新建对象时,会自动呈现动画效果
let animatedTextBg = new AnimateBgTextCanvas()
2. Vue
npm i animate-bg-text-canvas
import {AnimateBgTextCanvas} from "animate-bg-text-canvas"
export default {
mounted() {
this.height = innerHeight
this.animatedTextBg = new AnimateBgTextCanvas()
},
beforeDestroy() {
this.animatedTextBg.destroy()
}
}
log
- 2023-02-27 v0.0.1
TODO
- [ ] 鼠标交互