使用 animate-bg-canvas-browser.js
这个文件
// 新建对象时,会自动呈现动画效果
let animateCanvas = new AnimatedCanvasBG()
// 其它操作
animateCanvas.play() // 方块动起来
animateCanvas.stop() // 方块不动
npm i animate-bg-canvas
import { AnimatedCanvasBG } from "animate-bg-canvas"
export default {
mounted() {
this.height = innerHeight
this.animatedBg = new AnimatedCanvasBG()
},
beforeDestroy() {
this.animatedBg.destroy()
}
}
- 2023-02-14 v0.1